Index: content/renderer/input/input_handler_proxy.cc |
diff --git a/content/renderer/input/input_handler_proxy.cc b/content/renderer/input/input_handler_proxy.cc |
index ccc9c9f392e6d7ec6d32c972c864e6a303350687..56bf78a006fcea6f28779ac44dc0159c1d27ee63 100644 |
--- a/content/renderer/input/input_handler_proxy.cc |
+++ b/content/renderer/input/input_handler_proxy.cc |
@@ -619,7 +619,7 @@ void InputHandlerProxy::Animate(base::TimeTicks time) { |
kMaxSecondsFromFlingTimestampToFirstAnimate) { |
fling_parameters_.startTime = monotonic_time_sec; |
input_handler_->SetNeedsAnimate(); |
- client_->DidReceiveInputEvent(); |
+ client_->DidAnimate(); |
return; |
} |
} |
@@ -633,7 +633,7 @@ void InputHandlerProxy::Animate(base::TimeTicks time) { |
if (fling_is_active) { |
input_handler_->SetNeedsAnimate(); |
- client_->DidReceiveInputEvent(); |
+ client_->DidAnimate(); |
} else { |
TRACE_EVENT_INSTANT0("input", |
"InputHandlerProxy::animate::flingOver", |