| Index: third_party/WebKit/Source/web/WebViewImpl.h
|
| diff --git a/third_party/WebKit/Source/web/WebViewImpl.h b/third_party/WebKit/Source/web/WebViewImpl.h
|
| index 616f34076e2542b18f8e13a33d9a6f266885245f..1f6a792417b079e487d0e6bef7ccafb922b90d55 100644
|
| --- a/third_party/WebKit/Source/web/WebViewImpl.h
|
| +++ b/third_party/WebKit/Source/web/WebViewImpl.h
|
| @@ -297,7 +297,7 @@ class WEB_EXPORT WebViewImpl final
|
| void setBackgroundColorOverride(WebColor);
|
| void setZoomFactorOverride(float);
|
| void setCompositorDeviceScaleFactorOverride(float);
|
| - void setRootLayerTransform(const TransformationMatrix&);
|
| + void setDeviceEmulationTransform(const TransformationMatrix&);
|
| TransformationMatrix getRootLayerTransformForTesting() const;
|
|
|
| Color baseBackgroundColor() const { return m_baseBackgroundColor; }
|
| @@ -586,7 +586,7 @@ class WEB_EXPORT WebViewImpl final
|
| void reallocateRenderer();
|
| void updateLayerTreeViewport();
|
| void updateLayerTreeBackgroundColor();
|
| - void updateRootLayerTransform();
|
| + void updateDeviceEmulationTransform();
|
| void updateLayerTreeDeviceScaleFactor();
|
|
|
| // Helper function: Widens the width of |source| by the specified margins
|
| @@ -689,7 +689,7 @@ class WEB_EXPORT WebViewImpl final
|
| bool m_ignoreInputEvents;
|
|
|
| float m_compositorDeviceScaleFactorOverride;
|
| - TransformationMatrix m_rootLayerTransform;
|
| + TransformationMatrix m_deviceEmulationTransform;
|
|
|
| // Webkit expects keyPress events to be suppressed if the associated keyDown
|
| // event was handled. Safari implements this behavior by peeking out the
|
|
|