Title: [129283] trunk/Source/Platform
Revision
129283
Author
[email protected]
Date
2012-09-21 17:53:53 -0700 (Fri, 21 Sep 2012)

Log Message

[chromium] Forward-declare WebSize as a struct
https://bugs.webkit.org/show_bug.cgi?id=97381

Reviewed by James Robinson.

The mismatched "class" forward-declaration for WebSize in this file
will cause a Clang error when it's included in Chromium.

* chromium/public/WebCompositorSoftwareOutputDevice.h:
(WebKit):

Modified Paths

Diff

Modified: trunk/Source/Platform/ChangeLog (129282 => 129283)


--- trunk/Source/Platform/ChangeLog	2012-09-22 00:46:16 UTC (rev 129282)
+++ trunk/Source/Platform/ChangeLog	2012-09-22 00:53:53 UTC (rev 129283)
@@ -1,3 +1,16 @@
+2012-09-21  Alexandre Elias  <[email protected]>
+
+        [chromium] Forward-declare WebSize as a struct
+        https://bugs.webkit.org/show_bug.cgi?id=97381
+
+        Reviewed by James Robinson.
+
+        The mismatched "class" forward-declaration for WebSize in this file
+        will cause a Clang error when it's included in Chromium.
+
+        * chromium/public/WebCompositorSoftwareOutputDevice.h:
+        (WebKit):
+
 2012-09-21  Brandon Jones  <[email protected]>
 
         Add support for OES_vertex_array_object in chromium

Modified: trunk/Source/Platform/chromium/public/WebCompositorSoftwareOutputDevice.h (129282 => 129283)


--- trunk/Source/Platform/chromium/public/WebCompositorSoftwareOutputDevice.h	2012-09-22 00:46:16 UTC (rev 129282)
+++ trunk/Source/Platform/chromium/public/WebCompositorSoftwareOutputDevice.h	2012-09-22 00:53:53 UTC (rev 129283)
@@ -29,7 +29,7 @@
 namespace WebKit {
 
 class WebImage;
-class WebSize;
+struct WebSize;
 
 // This is a "tear-off" class providing software drawing support to
 // WebCompositorOutputSurface, such as to a platform-provided window
_______________________________________________
webkit-changes mailing list
[email protected]
http://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to