Title: [119607] trunk/Source/WebKit/chromium
Revision
119607
Author
[email protected]
Date
2012-06-06 13:41:03 -0700 (Wed, 06 Jun 2012)

Log Message

[chromium] Avoid limiting page-scale-factor when device-scale-factor is applied in the compositor.
https://bugs.webkit.org/show_bug.cgi?id=88417

Patch by Sadrul Habib Chowdhury <[email protected]> on 2012-06-06
Reviewed by James Robinson.

* src/WebViewImpl.cpp:
(WebKit::WebViewImpl::setIsAcceleratedCompositingActive):

Modified Paths

Diff

Modified: trunk/Source/WebKit/chromium/ChangeLog (119606 => 119607)


--- trunk/Source/WebKit/chromium/ChangeLog	2012-06-06 20:24:19 UTC (rev 119606)
+++ trunk/Source/WebKit/chromium/ChangeLog	2012-06-06 20:41:03 UTC (rev 119607)
@@ -1,3 +1,13 @@
+2012-06-06  Sadrul Habib Chowdhury  <[email protected]>
+
+        [chromium] Avoid limiting page-scale-factor when device-scale-factor is applied in the compositor.
+        https://bugs.webkit.org/show_bug.cgi?id=88417
+
+        Reviewed by James Robinson.
+
+        * src/WebViewImpl.cpp:
+        (WebKit::WebViewImpl::setIsAcceleratedCompositingActive):
+
 2012-06-06  Ami Fischman  <[email protected]>
 
         Unreviewed.  Rolled DEPS.

Modified: trunk/Source/WebKit/chromium/src/WebViewImpl.cpp (119606 => 119607)


--- trunk/Source/WebKit/chromium/src/WebViewImpl.cpp	2012-06-06 20:24:19 UTC (rev 119606)
+++ trunk/Source/WebKit/chromium/src/WebViewImpl.cpp	2012-06-06 20:41:03 UTC (rev 119607)
@@ -3482,9 +3482,6 @@
             m_deviceScaleInCompositor = page()->settings()->defaultDeviceScaleFactor();
             layerTreeViewSettings.deviceScaleFactor = m_deviceScaleInCompositor;
             setDeviceScaleFactor(m_deviceScaleInCompositor);
-            // When applying a scale factor in the compositor, we disallow page
-            // scaling as they are currently incompatible.
-            setPageScaleFactorLimits(1, 1);
         }
 
         m_layerTreeView.initialize(this, m_rootLayer, layerTreeViewSettings);
_______________________________________________
webkit-changes mailing list
[email protected]
http://lists.webkit.org/mailman/listinfo.cgi/webkit-changes

Reply via email to