Title: [191969] trunk/Source/WebCore
Revision
191969
Author
timothy_hor...@apple.com
Date
2015-11-03 12:52:29 -0800 (Tue, 03 Nov 2015)

Log Message

Fix the build.

* platform/Widget.h:
(WebCore::Widget::boundsRect):
(WebCore::Widget::resize):

Modified Paths

Diff

Modified: trunk/Source/WebCore/ChangeLog (191968 => 191969)


--- trunk/Source/WebCore/ChangeLog	2015-11-03 20:31:33 UTC (rev 191968)
+++ trunk/Source/WebCore/ChangeLog	2015-11-03 20:52:29 UTC (rev 191969)
@@ -1,3 +1,11 @@
+2015-11-03  Tim Horton  <timothy_hor...@apple.com>
+
+        Fix the build.
+
+        * platform/Widget.h:
+        (WebCore::Widget::boundsRect):
+        (WebCore::Widget::resize):
+
 2015-11-03  Myles C. Maxfield  <mmaxfi...@apple.com>
 
         font-variant-* properties in @font-face declarations should be honored

Modified: trunk/Source/WebCore/platform/Widget.h (191968 => 191969)


--- trunk/Source/WebCore/platform/Widget.h	2015-11-03 20:31:33 UTC (rev 191968)
+++ trunk/Source/WebCore/platform/Widget.h	2015-11-03 20:52:29 UTC (rev 191969)
@@ -110,7 +110,7 @@
 
     WEBCORE_EXPORT virtual void setFrameRect(const IntRect&);
     WEBCORE_EXPORT IntRect frameRect() const;
-    WEBCORE_EXPORT IntRect boundsRect() const { return IntRect(0, 0, width(),  height()); }
+    IntRect boundsRect() const { return IntRect(0, 0, width(),  height()); }
 
     void resize(int w, int h) { setFrameRect(IntRect(x(), y(), w, h)); }
     void resize(const IntSize& s) { setFrameRect(IntRect(location(), s)); }
_______________________________________________
webkit-changes mailing list
webkit-changes@lists.webkit.org
https://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to