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

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

Issue 2060713002: Respect the order of input messages from browser to renderer (Closed) Base URL: https://chromium.googlesource.com/a/chromium/src.git@2743
Patch Set: Created 4 years, 6 months 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 3403b82c5999d334dc61ac5ba7eb4d8b5ee61550..bdcaceca1d0880b8475cac977c663e3b288e8104 100644
--- a/content/renderer/input/input_handler_manager.h
+++ b/content/renderer/input/input_handler_manager.h
@@ -59,6 +59,9 @@ class CONTENT_EXPORT InputHandlerManager {
bool enable_smooth_scrolling,
bool enable_wheel_gestures);
+ void RegisterRoutingID(int routing_id);
+ void UnregisterRoutingID(int routing_id);
+
void ObserveWheelEventAndResultOnMainThread(
int routing_id,
const blink::WebMouseWheelEvent& wheel_event,
@@ -101,6 +104,9 @@ class CONTENT_EXPORT InputHandlerManager {
bool enable_smooth_scrolling,
bool enable_wheel_gestures);
+ void RegisterRoutingIDOnCompositorThread(int routing_id);
+ void UnregisterRoutingIDOnCompositorThread(int routing_id);
+
void ObserveWheelEventAndResultOnCompositorThread(
int routing_id,
const blink::WebMouseWheelEvent& wheel_event,
« no previous file with comments | « content/renderer/input/input_event_filter_unittest.cc ('k') | content/renderer/input/input_handler_manager.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698