Title: [98096] trunk/Source/WebCore
Revision
98096
Author
[email protected]
Date
2011-10-21 05:43:45 -0700 (Fri, 21 Oct 2011)

Log Message

2011-10-21  Alejandro G. Castro  <[email protected]>

        [cairo] Forward declaration of GraphicsContextState uses class instead of struct
        https://bugs.webkit.org/show_bug.cgi?id=70522

        The type is a struct not a class, replace the definition in the
        forward declaration.

        Reviewed by Martin Robinson.

        * platform/graphics/cairo/PlatformContextCairo.h:

Modified Paths

Diff

Modified: trunk/Source/WebCore/ChangeLog (98095 => 98096)


--- trunk/Source/WebCore/ChangeLog	2011-10-21 12:39:08 UTC (rev 98095)
+++ trunk/Source/WebCore/ChangeLog	2011-10-21 12:43:45 UTC (rev 98096)
@@ -1,3 +1,15 @@
+2011-10-21  Alejandro G. Castro  <[email protected]>
+
+        [cairo] Forward declaration of GraphicsContextState uses class instead of struct
+        https://bugs.webkit.org/show_bug.cgi?id=70522
+
+        The type is a struct not a class, replace the definition in the
+        forward declaration.
+
+        Reviewed by Martin Robinson.
+
+        * platform/graphics/cairo/PlatformContextCairo.h:
+
 2011-10-20  Andrey Kosyakov  <[email protected]>
 
         Web Inspector: make extension tests pass on chromium

Modified: trunk/Source/WebCore/platform/graphics/cairo/PlatformContextCairo.h (98095 => 98096)


--- trunk/Source/WebCore/platform/graphics/cairo/PlatformContextCairo.h	2011-10-21 12:39:08 UTC (rev 98095)
+++ trunk/Source/WebCore/platform/graphics/cairo/PlatformContextCairo.h	2011-10-21 12:43:45 UTC (rev 98096)
@@ -32,7 +32,7 @@
 
 namespace WebCore {
 
-class GraphicsContextState;
+struct GraphicsContextState;
 
 // Much like PlatformContextSkia in the Skia port, this class holds information that
 // would normally be private to GraphicsContext, except that we want to allow access
_______________________________________________
webkit-changes mailing list
[email protected]
http://lists.webkit.org/mailman/listinfo.cgi/webkit-changes

Reply via email to