diff options
author | mithro@mithis.com <mithro@mithis.com@0039d316-1c4b-4281-b951-d872f2087c98> | 2014-03-10 06:39:17 +0000 |
---|---|---|
committer | mithro@mithis.com <mithro@mithis.com@0039d316-1c4b-4281-b951-d872f2087c98> | 2014-03-10 06:39:17 +0000 |
commit | 6b81e34b959bf55750a4960adc7e952a497087c1 (patch) | |
tree | 0546a2bd7f6a21d29ee61f776a80bbfba39dcf14 /webkit | |
parent | 580115938c73d8193dff235459261ce8fe2b8470 (diff) | |
download | chromium_src-6b81e34b959bf55750a4960adc7e952a497087c1.zip chromium_src-6b81e34b959bf55750a4960adc7e952a497087c1.tar.gz chromium_src-6b81e34b959bf55750a4960adc7e952a497087c1.tar.bz2 |
Remove wall time from NotifyAnimationStarted and NotifyAnimationFinished.
With the change to Blink only needing the monotonic time the wall time can be
removed.
DEPS=185633002,185643002
BUG=299945
Review URL: https://codereview.chromium.org/184433007
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@255888 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'webkit')
-rw-r--r-- | webkit/renderer/compositor_bindings/web_to_cc_animation_delegate_adapter.cc | 2 | ||||
-rw-r--r-- | webkit/renderer/compositor_bindings/web_to_cc_animation_delegate_adapter.h | 2 |
2 files changed, 0 insertions, 4 deletions
diff --git a/webkit/renderer/compositor_bindings/web_to_cc_animation_delegate_adapter.cc b/webkit/renderer/compositor_bindings/web_to_cc_animation_delegate_adapter.cc index 90756f1..a1de2a2 100644 --- a/webkit/renderer/compositor_bindings/web_to_cc_animation_delegate_adapter.cc +++ b/webkit/renderer/compositor_bindings/web_to_cc_animation_delegate_adapter.cc @@ -13,7 +13,6 @@ WebToCCAnimationDelegateAdapter::WebToCCAnimationDelegateAdapter( : delegate_(delegate) {} void WebToCCAnimationDelegateAdapter::NotifyAnimationStarted( - double wall_clock_time, base::TimeTicks monotonic_time, cc::Animation::TargetProperty target_property) { delegate_->notifyAnimationStarted( @@ -22,7 +21,6 @@ void WebToCCAnimationDelegateAdapter::NotifyAnimationStarted( } void WebToCCAnimationDelegateAdapter::NotifyAnimationFinished( - double wall_clock_time, base::TimeTicks monotonic_time, cc::Animation::TargetProperty target_property) { delegate_->notifyAnimationFinished( diff --git a/webkit/renderer/compositor_bindings/web_to_cc_animation_delegate_adapter.h b/webkit/renderer/compositor_bindings/web_to_cc_animation_delegate_adapter.h index 7338322..951a9a6 100644 --- a/webkit/renderer/compositor_bindings/web_to_cc_animation_delegate_adapter.h +++ b/webkit/renderer/compositor_bindings/web_to_cc_animation_delegate_adapter.h @@ -20,11 +20,9 @@ class WebToCCAnimationDelegateAdapter : public cc::AnimationDelegate { private: virtual void NotifyAnimationStarted( - double wall_clock_time, base::TimeTicks monotonic_time, cc::Animation::TargetProperty target_property) OVERRIDE; virtual void NotifyAnimationFinished( - double wall_clock_time, base::TimeTicks monotonic_time, cc::Animation::TargetProperty target_property) OVERRIDE; |