Title: [227606] trunk/Source/WebKit
Revision
227606
Author
[email protected]
Date
2018-01-25 07:37:26 -0800 (Thu, 25 Jan 2018)

Log Message

[GTK] Fix build with touch events disabled

Unreviewed build fix.

Explicitly include gtk.h in files that were indirectly getting it
only when touch events were enabled.
* UIProcess/Automation/gtk/WebAutomationSessionGtk.cpp:
* UIProcess/gtk/WaylandCompositor.h:

Modified Paths

Diff

Modified: trunk/Source/WebKit/ChangeLog (227605 => 227606)


--- trunk/Source/WebKit/ChangeLog	2018-01-25 15:25:48 UTC (rev 227605)
+++ trunk/Source/WebKit/ChangeLog	2018-01-25 15:37:26 UTC (rev 227606)
@@ -1,3 +1,14 @@
+2018-01-25  Claudio Saavedra  <[email protected]>
+
+        [GTK] Fix build with touch events disabled
+
+        Unreviewed build fix.
+
+        Explicitly include gtk.h in files that were indirectly getting it
+        only when touch events were enabled.
+        * UIProcess/Automation/gtk/WebAutomationSessionGtk.cpp:
+        * UIProcess/gtk/WaylandCompositor.h:
+
 2018-01-25  Carlos Garcia Campos  <[email protected]>
 
         WebDriver: test imported/selenium/py/test/selenium/webdriver/common/alerts_tests.py crashes in debug

Modified: trunk/Source/WebKit/UIProcess/Automation/gtk/WebAutomationSessionGtk.cpp (227605 => 227606)


--- trunk/Source/WebKit/UIProcess/Automation/gtk/WebAutomationSessionGtk.cpp	2018-01-25 15:25:48 UTC (rev 227605)
+++ trunk/Source/WebKit/UIProcess/Automation/gtk/WebAutomationSessionGtk.cpp	2018-01-25 15:37:26 UTC (rev 227606)
@@ -28,6 +28,7 @@
 
 #include "WebAutomationSessionMacros.h"
 #include "WebPageProxy.h"
+#include <gtk/gtk.h>
 
 using namespace WebCore;
 

Modified: trunk/Source/WebKit/UIProcess/gtk/WaylandCompositor.h (227605 => 227606)


--- trunk/Source/WebKit/UIProcess/gtk/WaylandCompositor.h	2018-01-25 15:25:48 UTC (rev 227605)
+++ trunk/Source/WebKit/UIProcess/gtk/WaylandCompositor.h	2018-01-25 15:37:26 UTC (rev 227606)
@@ -30,6 +30,7 @@
 #include "WebPageProxy.h"
 #include <WebCore/RefPtrCairo.h>
 #include <WebCore/WlUniquePtr.h>
+#include <gtk/gtk.h>
 #include <wtf/HashMap.h>
 #include <wtf/NeverDestroyed.h>
 #include <wtf/Noncopyable.h>
_______________________________________________
webkit-changes mailing list
[email protected]
https://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to