Title: [123457] trunk/Tools
Revision
123457
Author
pe...@chromium.org
Date
2012-07-24 04:37:15 -0700 (Tue, 24 Jul 2012)

Log Message

[Chromium] Fix a class/struct mismatch error in TestDelegate.h (showing up on clang)
https://bugs.webkit.org/show_bug.cgi?id=92097

Unreviewed build fix.

WebContextMenuData is declared as a struct in Source/WebKit/chromium/public/WebContextMenuData.h,
but TestDelegate.h forward declares it as a class.

* DumpRenderTree/chromium/TestRunner/TestDelegate.h:
(WebKit):

Modified Paths

Diff

Modified: trunk/Tools/ChangeLog (123456 => 123457)


--- trunk/Tools/ChangeLog	2012-07-24 11:33:43 UTC (rev 123456)
+++ trunk/Tools/ChangeLog	2012-07-24 11:37:15 UTC (rev 123457)
@@ -1,3 +1,16 @@
+2012-07-24  Peter Beverloo  <pe...@chromium.org>
+
+        [Chromium] Fix a class/struct mismatch error in TestDelegate.h (showing up on clang)
+        https://bugs.webkit.org/show_bug.cgi?id=92097
+
+        Unreviewed build fix.
+
+        WebContextMenuData is declared as a struct in Source/WebKit/chromium/public/WebContextMenuData.h,
+        but TestDelegate.h forward declares it as a class.
+
+        * DumpRenderTree/chromium/TestRunner/TestDelegate.h:
+        (WebKit):
+
 2012-07-23  Oswald Buddenhagen  <oswald.buddenha...@nokia.com>
 
         [Qt] Fix compilation against namespaced Qt

Modified: trunk/Tools/DumpRenderTree/chromium/TestRunner/TestDelegate.h (123456 => 123457)


--- trunk/Tools/DumpRenderTree/chromium/TestRunner/TestDelegate.h	2012-07-24 11:33:43 UTC (rev 123456)
+++ trunk/Tools/DumpRenderTree/chromium/TestRunner/TestDelegate.h	2012-07-24 11:37:15 UTC (rev 123457)
@@ -35,7 +35,7 @@
 #include <wtf/Vector.h>
 
 namespace WebKit {
-class WebContextMenuData;
+struct WebContextMenuData;
 }
 
 class TestDelegate {
_______________________________________________
webkit-changes mailing list
webkit-changes@lists.webkit.org
http://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to