Title: [110910] trunk/Source/WebCore
Revision
110910
Author
[email protected]
Date
2012-03-15 16:47:43 -0700 (Thu, 15 Mar 2012)

Log Message

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

Reviewed by Eric Seidel.

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

* platform/graphics/FontPlatformData.h:
* platform/graphics/cairo/OwnPtrCairo.h:
* platform/graphics/cairo/RefPtrCairo.h:

Modified Paths

Diff

Modified: trunk/Source/WebCore/ChangeLog (110909 => 110910)


--- trunk/Source/WebCore/ChangeLog	2012-03-15 23:44:01 UTC (rev 110909)
+++ trunk/Source/WebCore/ChangeLog	2012-03-15 23:47:43 UTC (rev 110910)
@@ -1,3 +1,17 @@
+2012-03-15  Brent Fulgham  <[email protected]>
+
+        [WinCairo] Correct <wtf/*.h> include paths.
+        https://bugs.webkit.org/show_bug.cgi?id=81278
+
+        Reviewed by Eric Seidel.
+
+        Modify the #include declarations for several Cairo-related files
+        so that the wtf types are included using the full path.
+
+        * platform/graphics/FontPlatformData.h:
+        * platform/graphics/cairo/OwnPtrCairo.h:
+        * platform/graphics/cairo/RefPtrCairo.h:
+
 2012-03-15  Anders Carlsson  <[email protected]>
 
         only some tiles rendered when zoomed in

Modified: trunk/Source/WebCore/platform/graphics/FontPlatformData.h (110909 => 110910)


--- trunk/Source/WebCore/platform/graphics/FontPlatformData.h	2012-03-15 23:44:01 UTC (rev 110909)
+++ trunk/Source/WebCore/platform/graphics/FontPlatformData.h	2012-03-15 23:47:43 UTC (rev 110910)
@@ -50,7 +50,7 @@
 #endif
 
 #if USE(CAIRO)
-#include "HashFunctions.h"
+#include <wtf/HashFunctions.h>
 #include <cairo.h>
 #endif
 

Modified: trunk/Source/WebCore/platform/graphics/cairo/OwnPtrCairo.h (110909 => 110910)


--- trunk/Source/WebCore/platform/graphics/cairo/OwnPtrCairo.h	2012-03-15 23:44:01 UTC (rev 110909)
+++ trunk/Source/WebCore/platform/graphics/cairo/OwnPtrCairo.h	2012-03-15 23:47:43 UTC (rev 110910)
@@ -20,8 +20,8 @@
 #ifndef OwnPtrCairo_h
 #define OwnPtrCairo_h
 
-#include "OwnPtr.h"
-#include "PassOwnPtr.h"
+#include <wtf/OwnPtr.h>
+#include <wtf/PassOwnPtr.h>
 
 #if USE(FREETYPE)
 typedef struct _FcObjectSet FcObjectSet;

Modified: trunk/Source/WebCore/platform/graphics/cairo/RefPtrCairo.h (110909 => 110910)


--- trunk/Source/WebCore/platform/graphics/cairo/RefPtrCairo.h	2012-03-15 23:44:01 UTC (rev 110909)
+++ trunk/Source/WebCore/platform/graphics/cairo/RefPtrCairo.h	2012-03-15 23:47:43 UTC (rev 110910)
@@ -20,7 +20,7 @@
 #ifndef RefPtrCairo_h
 #define RefPtrCairo_h
 
-#include "RefPtr.h"
+#include <wtf/RefPtr.h>
 
 typedef struct _cairo cairo_t;
 typedef struct _cairo_surface cairo_surface_t;
_______________________________________________
webkit-changes mailing list
[email protected]
http://lists.webkit.org/mailman/listinfo.cgi/webkit-changes

Reply via email to