Title: [112680] trunk/Source
Revision
112680
Author
par...@webkit.org
Date
2012-03-30 09:53:54 -0700 (Fri, 30 Mar 2012)

Log Message

[WinCE] Correct <wtf/*.h> include paths.
https://bugs.webkit.org/show_bug.cgi?id=82713

Reviewed by Eric Seidel.

Modify the #include declarations for several WinCE-related files
so that the wtf types are included using the full path.

Source/WebCore:

* platform/graphics/wince/ImageBufferWinCE.cpp:

Source/WebKit/wince:

* WebView.cpp:
* WebView.h:

Modified Paths

Diff

Modified: trunk/Source/WebCore/ChangeLog (112679 => 112680)


--- trunk/Source/WebCore/ChangeLog	2012-03-30 16:50:42 UTC (rev 112679)
+++ trunk/Source/WebCore/ChangeLog	2012-03-30 16:53:54 UTC (rev 112680)
@@ -1,3 +1,15 @@
+2012-03-30  Patrick Gansterer  <par...@webkit.org>
+
+        [WinCE] Correct <wtf/*.h> include paths.
+        https://bugs.webkit.org/show_bug.cgi?id=82713
+
+        Reviewed by Eric Seidel.
+
+        Modify the #include declarations for several WinCE-related files
+        so that the wtf types are included using the full path.
+
+        * platform/graphics/wince/ImageBufferWinCE.cpp:
+
 2012-03-30  Vsevolod Vlasov  <vse...@chromium.org>
 
         Web Inspector: ScriptsNavigator scripts selection/focus polish.

Modified: trunk/Source/WebCore/platform/graphics/wince/ImageBufferWinCE.cpp (112679 => 112680)


--- trunk/Source/WebCore/platform/graphics/wince/ImageBufferWinCE.cpp	2012-03-30 16:50:42 UTC (rev 112679)
+++ trunk/Source/WebCore/platform/graphics/wince/ImageBufferWinCE.cpp	2012-03-30 16:53:54 UTC (rev 112680)
@@ -27,7 +27,6 @@
 #include "ImageData.h"
 #include "NotImplemented.h"
 #include "SharedBitmap.h"
-#include "UnusedParam.h"
 #include <wtf/UnusedParam.h>
 
 namespace WebCore {

Modified: trunk/Source/WebKit/wince/ChangeLog (112679 => 112680)


--- trunk/Source/WebKit/wince/ChangeLog	2012-03-30 16:50:42 UTC (rev 112679)
+++ trunk/Source/WebKit/wince/ChangeLog	2012-03-30 16:53:54 UTC (rev 112680)
@@ -1,3 +1,16 @@
+2012-03-30  Patrick Gansterer  <par...@webkit.org>
+
+        [WinCE] Correct <wtf/*.h> include paths.
+        https://bugs.webkit.org/show_bug.cgi?id=82713
+
+        Reviewed by Eric Seidel.
+
+        Modify the #include declarations for several WinCE-related files
+        so that the wtf types are included using the full path.
+
+        * WebView.cpp:
+        * WebView.h:
+
 2012-03-28  Nate Chapin  <jap...@chromium.org>
 
         Remove dispatchDidLoadMainResource callback, since no

Modified: trunk/Source/WebKit/wince/WebView.cpp (112679 => 112680)


--- trunk/Source/WebKit/wince/WebView.cpp	2012-03-30 16:50:42 UTC (rev 112679)
+++ trunk/Source/WebKit/wince/WebView.cpp	2012-03-30 16:53:54 UTC (rev 112680)
@@ -39,7 +39,6 @@
 #include "InitializeThreading.h"
 #include "InspectorClientWinCE.h"
 #include "IntSize.h"
-#include "MainThread.h"
 #include "NotImplemented.h"
 #include "Page.h"
 #include "PlatformKeyboardEvent.h"
@@ -50,6 +49,7 @@
 #include "Settings.h"
 #include "SharedBuffer.h"
 #include "WebCoreInstanceHandle.h"
+#include <wtf/MainThread.h>
 
 using namespace WebCore;
 

Modified: trunk/Source/WebKit/wince/WebView.h (112679 => 112680)


--- trunk/Source/WebKit/wince/WebView.h	2012-03-30 16:50:42 UTC (rev 112679)
+++ trunk/Source/WebKit/wince/WebView.h	2012-03-30 16:53:54 UTC (rev 112680)
@@ -26,8 +26,8 @@
 #define WebView_h
 
 #include "IntRect.h"
-#include "OwnPtr.h"
-#include "PassRefPtr.h"
+#include <wtf/OwnPtr.h>
+#include <wtf/PassRefPtr.h>
 
 namespace WTF {
 class String;
_______________________________________________
webkit-changes mailing list
webkit-changes@lists.webkit.org
http://lists.webkit.org/mailman/listinfo.cgi/webkit-changes

Reply via email to