Title: [127103] trunk/Source/WebKit/chromium
Revision
127103
Author
[email protected]
Date
2012-08-29 22:50:39 -0700 (Wed, 29 Aug 2012)

Log Message

Fix Chromium builds (Win and Mac)
https://bugs.webkit.org/show_bug.cgi?id=95421

Reviewed by James Robinson.

This change replaces 'class WebRect' with 'struct WebRect' to fix build breaks
on the "Chromium Mac Release" and the "Chromium Win Release" bot caused by
r127095.

* public/WebViewClient.h:
(WebKit):

Modified Paths

Diff

Modified: trunk/Source/WebKit/chromium/ChangeLog (127102 => 127103)


--- trunk/Source/WebKit/chromium/ChangeLog	2012-08-30 05:45:37 UTC (rev 127102)
+++ trunk/Source/WebKit/chromium/ChangeLog	2012-08-30 05:50:39 UTC (rev 127103)
@@ -1,3 +1,17 @@
+2012-08-29  Hironori Bono  <[email protected]>
+
+        Fix Chromium builds (Win and Mac)
+        https://bugs.webkit.org/show_bug.cgi?id=95421
+
+        Reviewed by James Robinson.
+
+        This change replaces 'class WebRect' with 'struct WebRect' to fix build breaks
+        on the "Chromium Mac Release" and the "Chromium Win Release" bot caused by
+        r127095.
+
+        * public/WebViewClient.h:
+        (WebKit):
+
 2012-08-29  Nat Duca  <[email protected]>
 
         [chromium] setNeedsAnimate should not cause commitRequested to become true

Modified: trunk/Source/WebKit/chromium/public/WebViewClient.h (127102 => 127103)


--- trunk/Source/WebKit/chromium/public/WebViewClient.h	2012-08-30 05:45:37 UTC (rev 127102)
+++ trunk/Source/WebKit/chromium/public/WebViewClient.h	2012-08-30 05:50:39 UTC (rev 127103)
@@ -72,7 +72,6 @@
 class WebNode;
 class WebNotificationPresenter;
 class WebRange;
-class WebRect;
 class WebSpeechInputController;
 class WebSpeechInputListener;
 class WebSpeechRecognizer;
@@ -86,6 +85,7 @@
 struct WebContextMenuData;
 struct WebPoint;
 struct WebPopupMenuInfo;
+struct WebRect;
 struct WebSize;
 struct WebWindowFeatures;
 
_______________________________________________
webkit-changes mailing list
[email protected]
http://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to