Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(2171)

Unified Diff: content/renderer/input/input_handler_proxy.cc

Issue 692483002: Hook up DidReceiveInputEvent to the blink scheduler (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Resonding to Sami's feedback Created 6 years, 1 month ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
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",

Powered by Google App Engine
This is Rietveld 408576698