Title: [184708] trunk/Source/WebKit2
Revision
184708
Author
o...@webkit.org
Date
2015-05-21 00:26:50 -0700 (Thu, 21 May 2015)

Log Message

Fix mismatched-tags warnings related to CoordinatedGraphics
https://bugs.webkit.org/show_bug.cgi?id=145130

Reviewed by Darin Adler.

* Shared/CoordinatedGraphics/threadedcompositor/ThreadedCompositor.h:
* UIProcess/CoordinatedGraphics/CoordinatedLayerTreeHostProxy.messages.in:
* WebProcess/WebPage/CoordinatedGraphics/ThreadedCoordinatedLayerTreeHost.h:

Modified Paths

Diff

Modified: trunk/Source/WebKit2/ChangeLog (184707 => 184708)


--- trunk/Source/WebKit2/ChangeLog	2015-05-21 06:39:40 UTC (rev 184707)
+++ trunk/Source/WebKit2/ChangeLog	2015-05-21 07:26:50 UTC (rev 184708)
@@ -1,3 +1,14 @@
+2015-05-21  Csaba Osztrogonác  <o...@webkit.org>
+
+        Fix mismatched-tags warnings related to CoordinatedGraphics
+        https://bugs.webkit.org/show_bug.cgi?id=145130
+
+        Reviewed by Darin Adler.
+
+        * Shared/CoordinatedGraphics/threadedcompositor/ThreadedCompositor.h:
+        * UIProcess/CoordinatedGraphics/CoordinatedLayerTreeHostProxy.messages.in:
+        * WebProcess/WebPage/CoordinatedGraphics/ThreadedCoordinatedLayerTreeHost.h:
+
 2015-05-20  Gyuyoung Kim  <gyuyoung....@webkit.org>
 
         Unreviewed GTK build fix since r184686.

Modified: trunk/Source/WebKit2/Shared/CoordinatedGraphics/threadedcompositor/ThreadedCompositor.h (184707 => 184708)


--- trunk/Source/WebKit2/Shared/CoordinatedGraphics/threadedcompositor/ThreadedCompositor.h	2015-05-21 06:39:40 UTC (rev 184707)
+++ trunk/Source/WebKit2/Shared/CoordinatedGraphics/threadedcompositor/ThreadedCompositor.h	2015-05-21 07:26:50 UTC (rev 184708)
@@ -39,7 +39,7 @@
 #include <wtf/Threading.h>
 
 namespace WebCore {
-class CoordinatedGraphicsState;
+struct CoordinatedGraphicsState;
 }
 
 namespace WebKit {

Modified: trunk/Source/WebKit2/UIProcess/CoordinatedGraphics/CoordinatedLayerTreeHostProxy.messages.in (184707 => 184708)


--- trunk/Source/WebKit2/UIProcess/CoordinatedGraphics/CoordinatedLayerTreeHostProxy.messages.in	2015-05-21 06:39:40 UTC (rev 184707)
+++ trunk/Source/WebKit2/UIProcess/CoordinatedGraphics/CoordinatedLayerTreeHostProxy.messages.in	2015-05-21 07:26:50 UTC (rev 184708)
@@ -21,6 +21,6 @@
 #if USE(COORDINATED_GRAPHICS)
 messages -> CoordinatedLayerTreeHostProxy {
 
-    CommitCoordinatedGraphicsState(WebCore::CoordinatedGraphicsState state)
+    CommitCoordinatedGraphicsState(struct WebCore::CoordinatedGraphicsState state)
 }
 #endif

Modified: trunk/Source/WebKit2/WebProcess/WebPage/CoordinatedGraphics/ThreadedCoordinatedLayerTreeHost.h (184707 => 184708)


--- trunk/Source/WebKit2/WebProcess/WebPage/CoordinatedGraphics/ThreadedCoordinatedLayerTreeHost.h	2015-05-21 06:39:40 UTC (rev 184707)
+++ trunk/Source/WebKit2/WebProcess/WebPage/CoordinatedGraphics/ThreadedCoordinatedLayerTreeHost.h	2015-05-21 07:26:50 UTC (rev 184708)
@@ -46,7 +46,7 @@
 
 namespace WebCore {
 class CoordinatedGraphicsLayerState;
-class CoordinatedGraphicsState;
+struct CoordinatedGraphicsState;
 class CoordinatedSurface;
 class GraphicsContext;
 class GraphicsLayer;
_______________________________________________
webkit-changes mailing list
webkit-changes@lists.webkit.org
https://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to