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

Unified Diff: content/renderer/gpu/input_handler_manager_client.h

Issue 15002007: Delegate root layer scroll offset to android_webview. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: fix unittest compile Created 7 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
« no previous file with comments | « content/renderer/gpu/input_handler_manager.cc ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: content/renderer/gpu/input_handler_manager_client.h
diff --git a/content/renderer/gpu/input_handler_manager_client.h b/content/renderer/gpu/input_handler_manager_client.h
index 11ec084f5d522a3b2d2cd7db95c2c4551d99a009..b5371d83988d0cbdf2378b25678a2e77135824f7 100644
--- a/content/renderer/gpu/input_handler_manager_client.h
+++ b/content/renderer/gpu/input_handler_manager_client.h
@@ -13,6 +13,10 @@ namespace ui {
struct LatencyInfo;
}
+namespace cc {
+class InputHandler;
+}
+
namespace WebKit {
class WebInputEvent;
}
@@ -35,7 +39,8 @@ class CONTENT_EXPORT InputHandlerManagerClient {
virtual void SetBoundHandler(const Handler& handler) = 0;
// Called from the compositor thread.
- virtual void DidAddInputHandler(int routing_id) = 0;
+ virtual void DidAddInputHandler(int routing_id,
+ cc::InputHandler* input_handler) = 0;
virtual void DidRemoveInputHandler(int routing_id) = 0;
protected:
« no previous file with comments | « content/renderer/gpu/input_handler_manager.cc ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698