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

Unified Diff: content/renderer/mus/compositor_mus_connection_unittest.cc

Issue 1877073003: Respect the order of input messages from browser to renderer (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: rebased Created 4 years, 7 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/mus/compositor_mus_connection_unittest.cc
diff --git a/content/renderer/mus/compositor_mus_connection_unittest.cc b/content/renderer/mus/compositor_mus_connection_unittest.cc
index 9ca91a184f36185d2c22a8265827e50680af0fe4..bec0633e73a4e0b47b04c7e6fa8c8d488be11b3f 100644
--- a/content/renderer/mus/compositor_mus_connection_unittest.cc
+++ b/content/renderer/mus/compositor_mus_connection_unittest.cc
@@ -123,8 +123,8 @@ class TestInputHandlerManagerClient
// content::InputHandlerManagerClient:
void SetBoundHandler(const Handler& handler) override {}
- void DidAddInputHandler(int routing_id) override {}
- void DidRemoveInputHandler(int routing_id) override {}
+ void RegisterRoutingID(int routing_id) override {}
+ void UnregisterRoutingID(int routing_id) override {}
void DidOverscroll(int routing_id,
const content::DidOverscrollParams& params) override {}
void DidStartFlinging(int routing_id) override {}

Powered by Google App Engine
This is Rietveld 408576698