Title: [133901] trunk/Source/Platform
Revision
133901
Author
[email protected]
Date
2012-11-08 07:43:36 -0800 (Thu, 08 Nov 2012)

Log Message

[chromium] correct coding oversight for clang
https://bugs.webkit.org/show_bug.cgi?id=101513

Reviewed by Kent Tamura.

https://bugs.webkit.org/show_bug.cgi?id=100675 contains an
incorrect declaration that precludes compiling embedder code
with clang: patch changes class to struct appropriately.

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

Modified Paths

Diff

Modified: trunk/Source/Platform/ChangeLog (133900 => 133901)


--- trunk/Source/Platform/ChangeLog	2012-11-08 15:39:04 UTC (rev 133900)
+++ trunk/Source/Platform/ChangeLog	2012-11-08 15:43:36 UTC (rev 133901)
@@ -1,3 +1,17 @@
+2012-11-08  Robert Kroeger  <[email protected]>
+
+        [chromium] correct coding oversight for clang
+        https://bugs.webkit.org/show_bug.cgi?id=101513
+
+        Reviewed by Kent Tamura.
+
+        https://bugs.webkit.org/show_bug.cgi?id=100675 contains an
+        incorrect declaration that precludes compiling embedder code
+        with clang: patch changes class to struct appropriately.
+
+        * chromium/public/WebGestureCurveTarget.h:
+        (WebKit):
+
 2012-11-07  Yusuf Ozuysal  <[email protected]>
 
         Add API for touchEventHandlerRegion to WebLayer

Modified: trunk/Source/Platform/chromium/public/WebGestureCurveTarget.h (133900 => 133901)


--- trunk/Source/Platform/chromium/public/WebGestureCurveTarget.h	2012-11-08 15:39:04 UTC (rev 133900)
+++ trunk/Source/Platform/chromium/public/WebGestureCurveTarget.h	2012-11-08 15:43:36 UTC (rev 133901)
@@ -27,7 +27,7 @@
 
 namespace WebKit {
 
-class WebPoint;
+struct WebPoint;
 
 class WebGestureCurveTarget {
 public:
_______________________________________________
webkit-changes mailing list
[email protected]
http://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to