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

Unified Diff: content/browser/android/in_process/synchronous_input_event_filter.h

Issue 15002007: Delegate root layer scroll offset to android_webview. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: rebase on top of Jared's CL 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
Index: content/browser/android/in_process/synchronous_input_event_filter.h
diff --git a/content/browser/android/in_process/synchronous_input_event_filter.h b/content/browser/android/in_process/synchronous_input_event_filter.h
index 0ea35a7379c219005a0e2411a309ea4810074ca8..084c3959dcb29b0a39c84f1dfb58ffde862cc947 100644
--- a/content/browser/android/in_process/synchronous_input_event_filter.h
+++ b/content/browser/android/in_process/synchronous_input_event_filter.h
@@ -32,8 +32,10 @@ class SynchronousInputEventFilter : public InputHandlerManagerClient {
// InputHandlerManagerClient implementation.
virtual void SetBoundHandler(const Handler& handler) OVERRIDE;
- virtual void DidAddInputHandler(int routing_id) OVERRIDE {}
- virtual void DidRemoveInputHandler(int routing_id) OVERRIDE {}
+ virtual void DidAddInputHandler(
+ int routing_id,
+ base::WeakPtr<cc::InputHandler> input_handler) OVERRIDE;
+ virtual void DidRemoveInputHandler(int routing_id) OVERRIDE;
private:
void SetBoundHandlerOnUIThread(const Handler& handler);

Powered by Google App Engine
This is Rietveld 408576698