Title: [148674] trunk/Source/WebKit2
Revision
148674
Author
[email protected]
Date
2013-04-18 07:08:07 -0700 (Thu, 18 Apr 2013)

Log Message

[WK2] CoordinatedGraphicsLayerState is a struct, not a class
https://bugs.webkit.org/show_bug.cgi?id=108855

Reviewed by Andreas Kling.

Fixes the forward declaration which takes CoordinatedGraphicsLayerState
as a class.

* UIProcess/CoordinatedGraphics/CoordinatedLayerTreeHostProxy.h:
(WebCore):

Modified Paths

Diff

Modified: trunk/Source/WebKit2/ChangeLog (148673 => 148674)


--- trunk/Source/WebKit2/ChangeLog	2013-04-18 13:54:17 UTC (rev 148673)
+++ trunk/Source/WebKit2/ChangeLog	2013-04-18 14:08:07 UTC (rev 148674)
@@ -1,3 +1,16 @@
+2013-04-18  Bruno de Oliveira Abinader  <[email protected]>
+
+        [WK2] CoordinatedGraphicsLayerState is a struct, not a class
+        https://bugs.webkit.org/show_bug.cgi?id=108855
+
+        Reviewed by Andreas Kling.
+
+        Fixes the forward declaration which takes CoordinatedGraphicsLayerState
+        as a class.
+
+        * UIProcess/CoordinatedGraphics/CoordinatedLayerTreeHostProxy.h:
+        (WebCore):
+
 2013-04-18  Krzysztof Wolanski  <[email protected]>:
 
         [EFL][WK2] Change inadequate return value in method setDone().

Modified: trunk/Source/WebKit2/UIProcess/CoordinatedGraphics/CoordinatedLayerTreeHostProxy.h (148673 => 148674)


--- trunk/Source/WebKit2/UIProcess/CoordinatedGraphics/CoordinatedLayerTreeHostProxy.h	2013-04-18 13:54:17 UTC (rev 148673)
+++ trunk/Source/WebKit2/UIProcess/CoordinatedGraphics/CoordinatedLayerTreeHostProxy.h	2013-04-18 14:08:07 UTC (rev 148674)
@@ -41,7 +41,7 @@
 #include <wtf/Vector.h>
 
 namespace WebCore {
-class CoordinatedGraphicsLayerState;
+struct CoordinatedGraphicsLayerState;
 class CoordinatedGraphicsState;
 class SurfaceUpdateInfo;
 }
_______________________________________________
webkit-changes mailing list
[email protected]
https://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to