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/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/proxy.h')
-rw-r--r-- | cc/proxy.h | 2 |
1 files changed, 2 insertions, 0 deletions
@@ -80,6 +80,8 @@ public: // like compositeAndReadback while commits are deferred. virtual void setDeferCommits(bool) = 0; + virtual void didAddAnimation() = 0; + virtual bool commitRequested() const = 0; virtual void start() = 0; // Must be called before using the proxy. |