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

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

Issue 692483002: Hook up DidReceiveInputEvent to the blink scheduler (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Responding to Ross' suggestion 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_wrapper.cc
diff --git a/content/renderer/input/input_handler_wrapper.cc b/content/renderer/input/input_handler_wrapper.cc
index e53f624a83138c9620c0c1dbdbce37da805063d2..8cd9d70364c22153890f81b42f0a59679345b472 100644
--- a/content/renderer/input/input_handler_wrapper.cc
+++ b/content/renderer/input/input_handler_wrapper.cc
@@ -58,7 +58,15 @@ void InputHandlerWrapper::DidStopFlinging() {
}
void InputHandlerWrapper::DidReceiveInputEvent() {
- // TODO(skyostil): Hook this up into the renderer scheduler.
+ if (input_handler_manager_) {
Sami 2014/11/06 22:17:34 Do we need this check since the other methods don'
alex clarke (OOO till 29th) 2014/11/06 22:32:15 Done.
+ input_handler_manager_->DidReceiveInputEvent();
+ }
+}
+
+void InputHandlerWrapper::DidAnimateForInput() {
+ if (input_handler_manager_) {
+ input_handler_manager_->DidAnimateForInput();
+ }
}
} // namespace content

Powered by Google App Engine
This is Rietveld 408576698