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

Unified Diff: content/renderer/input/input_handler_manager.h

Issue 692483002: Hook up DidReceiveInputEvent to the blink scheduler (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Adding some input event filter logic 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
« no previous file with comments | « no previous file | content/renderer/input/input_handler_manager.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: content/renderer/input/input_handler_manager.h
diff --git a/content/renderer/input/input_handler_manager.h b/content/renderer/input/input_handler_manager.h
index b6c70700526b9e7a1f907c56a7856f5181316e2d..d7356ea57309fb0e356e482e7bd40d49998c8f54 100644
--- a/content/renderer/input/input_handler_manager.h
+++ b/content/renderer/input/input_handler_manager.h
@@ -28,16 +28,20 @@ namespace content {
class InputHandlerWrapper;
class InputHandlerManagerClient;
struct DidOverscrollParams;
+class RendererScheduler;
// InputHandlerManager class manages InputHandlerProxy instances for
// the WebViews in this renderer.
class InputHandlerManager {
public:
- // |message_loop_proxy| is the MessageLoopProxy of the compositor thread. Both
- // the underlying MessageLoop and supplied |client| must outlive this object.
+ // |message_loop_proxy| is the MessageLoopProxy of the compositor thread. The
+ // underlying MessageLoop and supplied |client| and the |renderer_scheduler|
+ // must outlive this object. The RendererScheduler needs to know when input
+ // events and fling animations occur, which is why it's passed in here.
InputHandlerManager(
const scoped_refptr<base::MessageLoopProxy>& message_loop_proxy,
- InputHandlerManagerClient* client);
+ InputHandlerManagerClient* client,
+ RendererScheduler* renderer_scheduler);
~InputHandlerManager();
// Callable from the main thread only.
@@ -60,6 +64,12 @@ class InputHandlerManager {
// Called from the compositor's thread.
void DidStopFlinging(int routing_id);
+ // Called from the compositor's thread.
+ void DidReceiveInputEvent(blink::WebInputEvent::Type type);
+
+ // Called from the compositor's thread.
+ void DidAnimateForInput();
+
private:
// Called from the compositor's thread.
void AddInputHandlerOnCompositorThread(
@@ -74,6 +84,7 @@ class InputHandlerManager {
scoped_refptr<base::MessageLoopProxy> message_loop_proxy_;
InputHandlerManagerClient* client_;
+ RendererScheduler* renderer_scheduler_; // Not owned.
};
} // namespace content
« no previous file with comments | « no previous file | content/renderer/input/input_handler_manager.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698