diff options
author | skyostil@google.com <skyostil@google.com@0039d316-1c4b-4281-b951-d872f2087c98> | 2014-04-29 15:50:04 +0000 |
---|---|---|
committer | skyostil@google.com <skyostil@google.com@0039d316-1c4b-4281-b951-d872f2087c98> | 2014-04-29 15:50:04 +0000 |
commit | 0c543754c61af2c6c038b7b6facb56a301c2dbbb (patch) | |
tree | 9de65b9e432e077aaab51f75dbfccaac292095bd /cc/input/input_handler.h | |
parent | 07b8fe1ca6539d166b95e90464aac504879c8204 (diff) | |
download | chromium_src-0c543754c61af2c6c038b7b6facb56a301c2dbbb.zip chromium_src-0c543754c61af2c6c038b7b6facb56a301c2dbbb.tar.gz chromium_src-0c543754c61af2c6c038b7b6facb56a301c2dbbb.tar.bz2 |
Revert 266624 "cc: Split animating and drawing into separate act..."
> cc: Split animating and drawing into separate actions
>
> Split impl-side animating and drawing into separate actions. This is
> needed to allow for the possibility of a commit between animating and
> drawing so that the main thread gets a chance to consume the new
> animation state. In particular this allows the main thread to
> synchronize with a fling animation using an onscroll handler.
>
> BUG=347366
>
> Review URL: https://codereview.chromium.org/206793003
Reason for revert: Broke some downstream unit tests.
TBR=skyostil@chromium.org
BUG=368064
Review URL: https://codereview.chromium.org/254883004
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@266895 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'cc/input/input_handler.h')
-rw-r--r-- | cc/input/input_handler.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/cc/input/input_handler.h b/cc/input/input_handler.h index e78a8d1..774e011 100644 --- a/cc/input/input_handler.h +++ b/cc/input/input_handler.h @@ -125,7 +125,7 @@ class CC_EXPORT InputHandler { base::TimeDelta duration) = 0; // Request another callback to InputHandlerClient::Animate(). - virtual void SetNeedsAnimate() = 0; + virtual void ScheduleAnimation() = 0; virtual bool HaveTouchEventHandlersAt(const gfx::Point& viewport_point) = 0; |