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

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: Added a test 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 d9a34ada63b15efc548b0188ee606161997a3bfb..ccc9c9f392e6d7ec6d32c972c864e6a303350687 100644
--- a/content/renderer/input/input_handler_proxy.cc
+++ b/content/renderer/input/input_handler_proxy.cc
@@ -619,6 +619,7 @@ void InputHandlerProxy::Animate(base::TimeTicks time) {
kMaxSecondsFromFlingTimestampToFirstAnimate) {
fling_parameters_.startTime = monotonic_time_sec;
input_handler_->SetNeedsAnimate();
+ client_->DidReceiveInputEvent();
Sami 2014/11/03 23:54:07 It feels a little wrong to lie to the client about
alex clarke (OOO till 29th) 2014/11/04 01:14:35 Done.
return;
}
}
@@ -632,6 +633,7 @@ void InputHandlerProxy::Animate(base::TimeTicks time) {
if (fling_is_active) {
input_handler_->SetNeedsAnimate();
+ client_->DidReceiveInputEvent();
} else {
TRACE_EVENT_INSTANT0("input",
"InputHandlerProxy::animate::flingOver",

Powered by Google App Engine
This is Rietveld 408576698