diff options
author | vollick@chromium.org <vollick@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2012-12-08 17:01:18 +0000 |
---|---|---|
committer | vollick@chromium.org <vollick@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2012-12-08 17:01:18 +0000 |
commit | df1ec1ac79676fbc12181317c6febd199ad09728 (patch) | |
tree | a04f90c142fc1e9d4e82e7e345250bb8daa06385 /cc/thread_proxy.h | |
parent | 9b39fe5ba8173f8e4a505149440069a546f6107a (diff) | |
download | chromium_src-df1ec1ac79676fbc12181317c6febd199ad09728.zip chromium_src-df1ec1ac79676fbc12181317c6febd199ad09728.tar.gz chromium_src-df1ec1ac79676fbc12181317c6febd199ad09728.tar.bz2 |
Revert 171714 - Use an auxiliary list of animation controllers.
> With this patch we accomplish the following:
> 1. layer animation controllers are ref counted (so they can be shared by the two impl trees)
> 2. the layer tree hosts now own a list of active animation controllers. This allows for a couple of nice things
> __a. Ticking the animation controllers no longer requires a tree walk
> __b. We will be able to support ticking of animation controllers for layers that are not yet added to the layer tree. (Support coming in a future patch).
> 3. animation controllers register and unregister themselves from their respective layer tree host's list when they have an animation to tick.
>
> BUG=162111
> Committed: https://src.chromium.org/viewvc/chrome?view=rev&revision=171714
TBR=vollick@chromium.org
BUG=
Review URL: https://codereview.chromium.org/11491003
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@171981 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'cc/thread_proxy.h')
-rw-r--r-- | cc/thread_proxy.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/cc/thread_proxy.h b/cc/thread_proxy.h index c0a661a..da4f386 100644 --- a/cc/thread_proxy.h +++ b/cc/thread_proxy.h @@ -47,6 +47,7 @@ public: virtual void setNeedsRedraw() OVERRIDE; virtual void setDeferCommits(bool) OVERRIDE; virtual bool commitRequested() const OVERRIDE; + virtual void didAddAnimation() OVERRIDE { } virtual void start() OVERRIDE; virtual void stop() OVERRIDE; virtual size_t maxPartialTextureUpdates() const OVERRIDE; |