diff options
author | enne@chromium.org <enne@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2012-11-28 05:58:54 +0000 |
---|---|---|
committer | enne@chromium.org <enne@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2012-11-28 05:58:54 +0000 |
commit | 6ef21ffc292e8b606a8e8d33bbea0102b34e8116 (patch) | |
tree | fcda4e35a9055bc1796f6e076c253255adb620e7 /cc/picture_layer_impl.h | |
parent | b659ff723d5e68b468f65ce33bf40722eea089f0 (diff) | |
download | chromium_src-6ef21ffc292e8b606a8e8d33bbea0102b34e8116.zip chromium_src-6ef21ffc292e8b606a8e8d33bbea0102b34e8116.tar.gz chromium_src-6ef21ffc292e8b606a8e8d33bbea0102b34e8116.tar.bz2 |
cc: Add a didUpdateTransforms function to LayerImpl
This gets called per-layer post calcDraw.
BUG=155209
Review URL: https://codereview.chromium.org/11414190
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@169859 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'cc/picture_layer_impl.h')
-rw-r--r-- | cc/picture_layer_impl.h | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/cc/picture_layer_impl.h b/cc/picture_layer_impl.h index 062cfb4..4288042 100644 --- a/cc/picture_layer_impl.h +++ b/cc/picture_layer_impl.h @@ -29,6 +29,7 @@ public: virtual const char* layerTypeAsString() const OVERRIDE; virtual void appendQuads(QuadSink&, AppendQuadsData&) OVERRIDE; virtual void dumpLayerProperties(std::string*, int indent) const OVERRIDE; + virtual void didUpdateTransforms() OVERRIDE; // PictureLayerTilingClient overrides. virtual scoped_refptr<Tile> CreateTile(PictureLayerTiling*, @@ -37,9 +38,6 @@ public: // PushPropertiesTo active tree => pending tree void SyncFromActiveLayer(const PictureLayerImpl* other); - // Called post-calcDraw. - void Update(); - protected: PictureLayerImpl(int id); |