diff options
author | shawnsingh@chromium.org <shawnsingh@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2012-11-27 08:29:00 +0000 |
---|---|---|
committer | shawnsingh@chromium.org <shawnsingh@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2012-11-27 08:29:00 +0000 |
commit | c8686a05e1fa4cb3aa82690d7450791828096840 (patch) | |
tree | c43ef1a56ac27a06bc1ed7c069850cf7c6790002 /cc/layer_tree_host.h | |
parent | 5006a4185d3a95976ced07022188f9abb48790be (diff) | |
download | chromium_src-c8686a05e1fa4cb3aa82690d7450791828096840.zip chromium_src-c8686a05e1fa4cb3aa82690d7450791828096840.tar.gz chromium_src-c8686a05e1fa4cb3aa82690d7450791828096840.tar.bz2 |
Animation code is not yet migrated by this patch, due to WebTransformOperations.
BUG=159972
Review URL: https://codereview.chromium.org/11308153
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@169609 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'cc/layer_tree_host.h')
-rw-r--r-- | cc/layer_tree_host.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/cc/layer_tree_host.h b/cc/layer_tree_host.h index 9718a4d..ec8708d 100644 --- a/cc/layer_tree_host.h +++ b/cc/layer_tree_host.h @@ -206,7 +206,7 @@ public: // logical pixels in the un-zoomed viewport, the latter being the coordinates // required for hit-testing. gfx::PointF adjustEventPointForPinchZoom(const gfx::PointF& zoomedViewportPoint) const; - void setImplTransform(const WebKit::WebTransformationMatrix&); + void setImplTransform(const gfx::Transform&); void startRateLimiter(WebKit::WebGraphicsContext3D*); void stopRateLimiter(WebKit::WebGraphicsContext3D*); @@ -289,7 +289,7 @@ private: float m_pageScaleFactor; float m_minPageScaleFactor, m_maxPageScaleFactor; - WebKit::WebTransformationMatrix m_implTransform; + gfx::Transform m_implTransform; bool m_triggerIdleUpdates; SkColor m_backgroundColor; |