Title: [221290] trunk/Source/WebCore
Revision
221290
Author
[email protected]
Date
2017-08-29 00:46:13 -0700 (Tue, 29 Aug 2017)

Log Message

Unreviewed WPE debug build fix.

* platform/graphics/gstreamer/mse/AppendPipeline.cpp:
(WebCore::AppendPipeline::dispatchPendingDecryptionStructure):
AppendState is an enum class, enum values have to be accessed
using scope resolution.

Modified Paths

Diff

Modified: trunk/Source/WebCore/ChangeLog (221289 => 221290)


--- trunk/Source/WebCore/ChangeLog	2017-08-29 04:33:36 UTC (rev 221289)
+++ trunk/Source/WebCore/ChangeLog	2017-08-29 07:46:13 UTC (rev 221290)
@@ -1,3 +1,12 @@
+2017-08-29  Zan Dobersek  <[email protected]>
+
+        Unreviewed WPE debug build fix.
+
+        * platform/graphics/gstreamer/mse/AppendPipeline.cpp:
+        (WebCore::AppendPipeline::dispatchPendingDecryptionStructure):
+        AppendState is an enum class, enum values have to be accessed
+        using scope resolution.
+
 2017-08-28  Andy Estes  <[email protected]>
 
         [Cocoa] Upstream WKGetWebDefaultCFStringEncoding()

Modified: trunk/Source/WebCore/platform/graphics/gstreamer/mse/AppendPipeline.cpp (221289 => 221290)


--- trunk/Source/WebCore/platform/graphics/gstreamer/mse/AppendPipeline.cpp	2017-08-29 04:33:36 UTC (rev 221289)
+++ trunk/Source/WebCore/platform/graphics/gstreamer/mse/AppendPipeline.cpp	2017-08-29 07:46:13 UTC (rev 221290)
@@ -1091,7 +1091,7 @@
 {
     ASSERT(m_decryptor);
     ASSERT(m_pendingDecryptionStructure);
-    ASSERT(m_appendState == KeyNegotiation);
+    ASSERT(m_appendState == AppendState::KeyNegotiation);
     GST_TRACE("dispatching key to append pipeline %p", this);
 
     // Release the m_pendingDecryptionStructure object since
_______________________________________________
webkit-changes mailing list
[email protected]
https://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to