summaryrefslogtreecommitdiffstats
path: root/ui/gfx/transform.h
diff options
context:
space:
mode:
authorsky@chromium.org <sky@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2011-06-23 20:13:29 +0000
committersky@chromium.org <sky@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2011-06-23 20:13:29 +0000
commit710a98ded8a324b8ef534cd2ef9ad6735b1ee21c (patch)
tree4cedde4b490786bfabfc1b6554ac18f6d01d951b /ui/gfx/transform.h
parentca16a471056aafcba594c5ed81ca7b8389efd43b (diff)
downloadchromium_src-710a98ded8a324b8ef534cd2ef9ad6735b1ee21c.zip
chromium_src-710a98ded8a324b8ef534cd2ef9ad6735b1ee21c.tar.gz
chromium_src-710a98ded8a324b8ef534cd2ef9ad6735b1ee21c.tar.bz2
Adds the ability to animate transforms/bounds to View.
BUG=none TEST=none R=ben@chromium.org,wjmaclean@chromium.org Review URL: http://codereview.chromium.org/7242005 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@90254 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'ui/gfx/transform.h')
-rw-r--r--ui/gfx/transform.h1
1 files changed, 1 insertions, 0 deletions
diff --git a/ui/gfx/transform.h b/ui/gfx/transform.h
index aa5a675..c3f86ef 100644
--- a/ui/gfx/transform.h
+++ b/ui/gfx/transform.h
@@ -87,6 +87,7 @@ class Transform {
// Returns the underlying matrix.
const SkMatrix& matrix() const { return matrix_; }
+ SkMatrix& matrix() { return matrix_; }
private:
SkMatrix matrix_;