Title: [89360] trunk/Source/WebKit2
Revision
89360
Author
[email protected]
Date
2011-06-21 09:59:56 -0700 (Tue, 21 Jun 2011)

Log Message

2011-06-21  Lukasz Slachciak  <[email protected]>

        Reviewed by Sam Weinig.

        [GTK] [WK2] WebKit2 build break fixes.
        https://bugs.webkit.org/show_bug.cgi?id=62950

        When building WebKit2 for GTK there are few build breaks connected with missing include files.

        * Platform/unix/SharedMemoryUnix.cpp:
        * Shared/gtk/WebCoreArgumentCodersGtk.cpp:
        * UIProcess/API/gtk/PageClientImpl.cpp:

Modified Paths

Diff

Modified: trunk/Source/WebKit2/ChangeLog (89359 => 89360)


--- trunk/Source/WebKit2/ChangeLog	2011-06-21 16:00:05 UTC (rev 89359)
+++ trunk/Source/WebKit2/ChangeLog	2011-06-21 16:59:56 UTC (rev 89360)
@@ -1,3 +1,16 @@
+2011-06-21  Lukasz Slachciak  <[email protected]>
+
+        Reviewed by Sam Weinig.
+
+        [GTK] [WK2] WebKit2 build break fixes.
+        https://bugs.webkit.org/show_bug.cgi?id=62950
+
+        When building WebKit2 for GTK there are few build breaks connected with missing include files.
+
+        * Platform/unix/SharedMemoryUnix.cpp:
+        * Shared/gtk/WebCoreArgumentCodersGtk.cpp:
+        * UIProcess/API/gtk/PageClientImpl.cpp:
+
 2011-06-20  Martin Robinson  <[email protected]>
 
         Reviewed by Eric Seidel.

Modified: trunk/Source/WebKit2/Platform/unix/SharedMemoryUnix.cpp (89359 => 89360)


--- trunk/Source/WebKit2/Platform/unix/SharedMemoryUnix.cpp	2011-06-21 16:00:05 UTC (rev 89359)
+++ trunk/Source/WebKit2/Platform/unix/SharedMemoryUnix.cpp	2011-06-21 16:59:56 UTC (rev 89360)
@@ -45,6 +45,7 @@
 #if PLATFORM(QT)
 #include <QDir>
 #elif PLATFORM(GTK)
+#include <glib.h>
 #include <wtf/gobject/GOwnPtr.h>
 #endif
 

Modified: trunk/Source/WebKit2/Shared/gtk/WebCoreArgumentCodersGtk.cpp (89359 => 89360)


--- trunk/Source/WebKit2/Shared/gtk/WebCoreArgumentCodersGtk.cpp	2011-06-21 16:00:05 UTC (rev 89359)
+++ trunk/Source/WebKit2/Shared/gtk/WebCoreArgumentCodersGtk.cpp	2011-06-21 16:59:56 UTC (rev 89360)
@@ -27,6 +27,7 @@
 #include "config.h"
 #include "WebCoreArgumentCoders.h"
 
+#include <wtf/text/CString.h>
 #include <WebCore/ResourceError.h>
 #include <WebCore/ResourceRequest.h>
 #include <WebCore/ResourceResponse.h>

Modified: trunk/Source/WebKit2/UIProcess/API/gtk/PageClientImpl.cpp (89359 => 89360)


--- trunk/Source/WebKit2/UIProcess/API/gtk/PageClientImpl.cpp	2011-06-21 16:00:05 UTC (rev 89359)
+++ trunk/Source/WebKit2/UIProcess/API/gtk/PageClientImpl.cpp	2011-06-21 16:59:56 UTC (rev 89360)
@@ -38,6 +38,7 @@
 #include "WebKitWebViewBasePrivate.h"
 #include "WebPageProxy.h"
 #include "WebPopupMenuProxyGtk.h"
+#include <WebCore/Cursor.h>
 #include <WebCore/GtkUtilities.h>
 #include <wtf/text/WTFString.h>
 
_______________________________________________
webkit-changes mailing list
[email protected]
http://lists.webkit.org/mailman/listinfo.cgi/webkit-changes

Reply via email to