Index: webkit/renderer/compositor_bindings/web_to_cc_animation_delegate_adapter.cc |
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 c042bb66d64505188506b725927dbd6e6602ed4c..90756f1e550a5be36f28891199388e005149cade 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 |
@@ -17,7 +17,6 @@ void WebToCCAnimationDelegateAdapter::NotifyAnimationStarted( |
base::TimeTicks monotonic_time, |
cc::Animation::TargetProperty target_property) { |
delegate_->notifyAnimationStarted( |
ajuma
2014/03/03 15:26:04
Suggestion: Do this CL first, using an #ifdef so t
|
- wall_clock_time, |
(monotonic_time - base::TimeTicks()).InSecondsF(), |
static_cast<blink::WebAnimation::TargetProperty>(target_property)); |
} |
@@ -27,7 +26,6 @@ void WebToCCAnimationDelegateAdapter::NotifyAnimationFinished( |
base::TimeTicks monotonic_time, |
cc::Animation::TargetProperty target_property) { |
delegate_->notifyAnimationFinished( |
- wall_clock_time, |
(monotonic_time - base::TimeTicks()).InSecondsF(), |
static_cast<blink::WebAnimation::TargetProperty>(target_property)); |
} |