Title: [141920] trunk/Source/Platform
Revision
141920
Author
[email protected]
Date
2013-02-05 13:04:09 -0800 (Tue, 05 Feb 2013)

Log Message

[chromium] Remove optionalness of second parameter to WebLayerTreeView::setViewportSize
https://bugs.webkit.org/show_bug.cgi?id=108972

Reviewed by Adam Barth.

This was added to ease the transition of adding this parameter, but it's now always set.

* chromium/public/WebLayerTreeView.h:
(WebLayerTreeView):

Modified Paths

Diff

Modified: trunk/Source/Platform/ChangeLog (141919 => 141920)


--- trunk/Source/Platform/ChangeLog	2013-02-05 20:58:23 UTC (rev 141919)
+++ trunk/Source/Platform/ChangeLog	2013-02-05 21:04:09 UTC (rev 141920)
@@ -1,3 +1,15 @@
+2013-02-05  James Robinson  <[email protected]>
+
+        [chromium] Remove optionalness of second parameter to WebLayerTreeView::setViewportSize
+        https://bugs.webkit.org/show_bug.cgi?id=108972
+
+        Reviewed by Adam Barth.
+
+        This was added to ease the transition of adding this parameter, but it's now always set.
+
+        * chromium/public/WebLayerTreeView.h:
+        (WebLayerTreeView):
+
 2013-02-02  Michael Nordman  <[email protected]>
 
         [chromium] FileSystem mods: Changes to snapshot file creation to reduce dependencies on blobs.

Modified: trunk/Source/Platform/chromium/public/WebLayerTreeView.h (141919 => 141920)


--- trunk/Source/Platform/chromium/public/WebLayerTreeView.h	2013-02-05 20:58:23 UTC (rev 141919)
+++ trunk/Source/Platform/chromium/public/WebLayerTreeView.h	2013-02-05 21:04:09 UTC (rev 141920)
@@ -96,7 +96,7 @@
 
     // View properties ---------------------------------------------------
 
-    virtual void setViewportSize(const WebSize& layoutViewportSize, const WebSize& deviceViewportSize = WebSize()) = 0;
+    virtual void setViewportSize(const WebSize& layoutViewportSize, const WebSize& deviceViewportSize) = 0;
     // Gives the viewport size in layer space.
     virtual WebSize layoutViewportSize() const = 0;
     // Gives the viewport size in physical device pixels (may be different
_______________________________________________
webkit-changes mailing list
[email protected]
https://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to