* platform/graphics/gstreamer/eme/WebKitCommonEncryptionDecryptorGStreamer.cpp:
(webkitMediaCommonEncryptionDecryptTransformInPlace):
WTF::Seconds should be used instead of std::chrono::seconds.
git-svn-id: https://svn.webkit.org/repository/webkit/trunk@209705
268f45cc-cd09-0410-ab3c-
d52691b4dbfc
+2016-12-12 Zan Dobersek <zdobersek@igalia.com>
+
+ Unreviewed. Fixing build breakage in GStreamer's WebKitCommonEncryptionDecryptorGStreamer.
+
+ * platform/graphics/gstreamer/eme/WebKitCommonEncryptionDecryptorGStreamer.cpp:
+ (webkitMediaCommonEncryptionDecryptTransformInPlace):
+ WTF::Seconds should be used instead of std::chrono::seconds.
+
2016-12-11 Simon Fraser <simon.fraser@apple.com>
REGRESSION (r200283): Transform, overflow hidden and filter combination completely hides the element
GST_ERROR_OBJECT(self, "can't process key requests in less than PAUSED state");
return GST_FLOW_NOT_SUPPORTED;
}
- priv->condition.waitFor(priv->mutex, std::chrono::seconds(5), [priv] {
+ priv->condition.waitFor(priv->mutex, Seconds(5), [priv] {
return priv->keyReceived;
});
if (!priv->keyReceived) {