Title: [148351] trunk/Source/WebKit2
Revision
148351
Author
[email protected]
Date
2013-04-13 00:56:31 -0700 (Sat, 13 Apr 2013)

Log Message

Unreviewed GTK build fix after r148311.

* UIProcess/API/gtk/WebKitWebViewBase.cpp:
(resizeWebKitWebViewBaseFromAllocation): Passing IntSize() as the scroll offset
argument to the DrawingAreaProxy::setSize method.

Modified Paths

Diff

Modified: trunk/Source/WebKit2/ChangeLog (148350 => 148351)


--- trunk/Source/WebKit2/ChangeLog	2013-04-13 07:53:29 UTC (rev 148350)
+++ trunk/Source/WebKit2/ChangeLog	2013-04-13 07:56:31 UTC (rev 148351)
@@ -1,3 +1,11 @@
+2013-04-13  Zan Dobersek  <[email protected]>
+
+        Unreviewed GTK build fix after r148311.
+
+        * UIProcess/API/gtk/WebKitWebViewBase.cpp:
+        (resizeWebKitWebViewBaseFromAllocation): Passing IntSize() as the scroll offset
+        argument to the DrawingAreaProxy::setSize method.
+
 2013-04-12  Gavin Barraclough  <[email protected]>
 
         Add private interface to WKView to asynchronously update the drawing area size

Modified: trunk/Source/WebKit2/UIProcess/API/gtk/WebKitWebViewBase.cpp (148350 => 148351)


--- trunk/Source/WebKit2/UIProcess/API/gtk/WebKitWebViewBase.cpp	2013-04-13 07:53:29 UTC (rev 148350)
+++ trunk/Source/WebKit2/UIProcess/API/gtk/WebKitWebViewBase.cpp	2013-04-13 07:56:31 UTC (rev 148351)
@@ -495,7 +495,7 @@
 #endif
 
     if (priv->pageProxy->drawingArea())
-        priv->pageProxy->drawingArea()->setSize(viewRect.size(), IntSize());
+        priv->pageProxy->drawingArea()->setSize(viewRect.size(), IntSize(), IntSize());
 
     webkitWebViewBaseNotifyResizerSize(webViewBase);
 }
_______________________________________________
webkit-changes mailing list
[email protected]
https://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to