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

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: Trying to fix diff base 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_manager.h
diff --git a/content/renderer/input/input_handler_manager.h b/content/renderer/input/input_handler_manager.h
index b6c70700526b9e7a1f907c56a7856f5181316e2d..d23aa2fe9fab1bb5e61867208978bf7e116b0549 100644
--- a/content/renderer/input/input_handler_manager.h
+++ b/content/renderer/input/input_handler_manager.h
@@ -28,6 +28,7 @@ namespace content {
class InputHandlerWrapper;
class InputHandlerManagerClient;
struct DidOverscrollParams;
+class RendererScheduler;
// InputHandlerManager class manages InputHandlerProxy instances for
// the WebViews in this renderer.
@@ -41,10 +42,10 @@ class InputHandlerManager {
~InputHandlerManager();
// Callable from the main thread only.
- void AddInputHandler(
- int routing_id,
- const base::WeakPtr<cc::InputHandler>& input_handler,
- const base::WeakPtr<RenderViewImpl>& render_view_impl);
+ void AddInputHandler(int routing_id,
+ const base::WeakPtr<cc::InputHandler>& input_handler,
+ const base::WeakPtr<RenderViewImpl>& render_view_impl,
+ RendererScheduler* renderer_scheduler);
Sami 2014/11/06 00:31:20 Could you add a comment mentioning that renderer_s
alex clarke (OOO till 29th) 2014/11/06 19:21:45 Done.
// Callback only from the compositor's thread.
void RemoveInputHandler(int routing_id);
@@ -66,7 +67,8 @@ class InputHandlerManager {
int routing_id,
const scoped_refptr<base::MessageLoopProxy>& main_loop,
const base::WeakPtr<cc::InputHandler>& input_handler,
- const base::WeakPtr<RenderViewImpl>& render_view_impl);
+ const base::WeakPtr<RenderViewImpl>& render_view_impl,
+ RendererScheduler* renderer_scheduler);
typedef base::ScopedPtrHashMap<int, // routing_id
InputHandlerWrapper> InputHandlerMap;
« no previous file with comments | « no previous file | content/renderer/input/input_handler_manager.cc » ('j') | content/renderer/input/input_handler_manager.cc » ('J')

Powered by Google App Engine
This is Rietveld 408576698