Title: [93044] trunk/Source/WebKit2
Revision
93044
Author
[email protected]
Date
2011-08-15 08:54:35 -0700 (Mon, 15 Aug 2011)

Log Message

Unreviewed.
Fix Qt-WK2 build after r93040.

* UIProcess/qt/QtWebPageProxy.h:
(QtWebPageProxy::deviceScaleFactor):

Modified Paths

Diff

Modified: trunk/Source/WebKit2/ChangeLog (93043 => 93044)


--- trunk/Source/WebKit2/ChangeLog	2011-08-15 15:01:50 UTC (rev 93043)
+++ trunk/Source/WebKit2/ChangeLog	2011-08-15 15:54:35 UTC (rev 93044)
@@ -1,3 +1,11 @@
+2011-08-15  Balazs Kelemen  <[email protected]>
+
+        Unreviewed.
+        Fix Qt-WK2 build after r93040.
+
+        * UIProcess/qt/QtWebPageProxy.h:
+        (QtWebPageProxy::deviceScaleFactor):
+
 2011-08-10  Adam Roben  <[email protected]>
 
         Clear up scale factor terminology

Modified: trunk/Source/WebKit2/UIProcess/qt/QtWebPageProxy.h (93043 => 93044)


--- trunk/Source/WebKit2/UIProcess/qt/QtWebPageProxy.h	2011-08-15 15:01:50 UTC (rev 93043)
+++ trunk/Source/WebKit2/UIProcess/qt/QtWebPageProxy.h	2011-08-15 15:54:35 UTC (rev 93044)
@@ -126,7 +126,7 @@
     virtual void flashBackingStoreUpdates(const Vector<WebCore::IntRect>& updateRects);
     virtual void findStringInCustomRepresentation(const String&, FindOptions, unsigned maxMatchCount) { }
     virtual void countStringMatchesInCustomRepresentation(const String&, FindOptions, unsigned maxMatchCount) { }
-    virtual float userSpaceScaleFactor() const { return 1; }
+    virtual float deviceScaleFactor() const { return 1; }
 
     virtual void didFindZoomableArea(const WebCore::IntPoint&, const WebCore::IntRect&);
 
_______________________________________________
webkit-changes mailing list
[email protected]
http://lists.webkit.org/mailman/listinfo.cgi/webkit-changes

Reply via email to