Title: [222729] trunk/Source/WebKit
Revision
222729
Author
[email protected]
Date
2017-10-02 12:02:27 -0700 (Mon, 02 Oct 2017)

Log Message

[WPE] Fix UIProcess build with GStreamer and without VIDEO
https://bugs.webkit.org/show_bug.cgi?id=177753

Patch by Olivier Blin <[email protected]> on 2017-10-02
Reviewed by Michael Catanzaro.

GStreamer builds fail when WebAudio is enabled but VIDEO disabled.
This is the WPE counterpart of bug 153135.

* UIProcess/API/wpe/PageClientImpl.h:

Modified Paths

Diff

Modified: trunk/Source/WebKit/ChangeLog (222728 => 222729)


--- trunk/Source/WebKit/ChangeLog	2017-10-02 19:00:17 UTC (rev 222728)
+++ trunk/Source/WebKit/ChangeLog	2017-10-02 19:02:27 UTC (rev 222729)
@@ -1,3 +1,15 @@
+2017-10-02  Olivier Blin  <[email protected]>
+
+        [WPE] Fix UIProcess build with GStreamer and without VIDEO
+        https://bugs.webkit.org/show_bug.cgi?id=177753
+
+        Reviewed by Michael Catanzaro.
+
+        GStreamer builds fail when WebAudio is enabled but VIDEO disabled.
+        This is the WPE counterpart of bug 153135.
+
+        * UIProcess/API/wpe/PageClientImpl.h:
+
 2017-10-02  Alex Christensen  <[email protected]>
 
         Expose more WKPreferences SPI to match C SPI

Modified: trunk/Source/WebKit/UIProcess/API/wpe/PageClientImpl.h (222728 => 222729)


--- trunk/Source/WebKit/UIProcess/API/wpe/PageClientImpl.h	2017-10-02 19:00:17 UTC (rev 222728)
+++ trunk/Source/WebKit/UIProcess/API/wpe/PageClientImpl.h	2017-10-02 19:02:27 UTC (rev 222729)
@@ -111,7 +111,7 @@
     void refView() override;
     void derefView() override;
 
-#if ENABLE(VIDEO)
+#if ENABLE(VIDEO) && USE(GSTREAMER)
     bool decidePolicyForInstallMissingMediaPluginsPermissionRequest(InstallMissingMediaPluginsPermissionRequest&) override;
 #endif
 
_______________________________________________
webkit-changes mailing list
[email protected]
https://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to