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

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

Issue 131373004: Let the browser know the end of fling (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Fix compile break Created 6 years, 11 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_event_filter.h
diff --git a/content/renderer/input/input_event_filter.h b/content/renderer/input/input_event_filter.h
index 240f939f721bd041f76d52dc8799a24cff49287a..5e8b06e4ef962e58db16efbf5446f5e389c4853c 100644
--- a/content/renderer/input/input_event_filter.h
+++ b/content/renderer/input/input_event_filter.h
@@ -49,6 +49,7 @@ class CONTENT_EXPORT InputEventFilter
virtual void DidRemoveInputHandler(int routing_id) OVERRIDE;
virtual void DidOverscroll(int routing_id,
const cc::DidOverscrollParams& params) OVERRIDE;
+ virtual void DidStopFlinging(int routing_id) OVERRIDE;
// IPC::ChannelProxy::MessageFilter methods:
virtual void OnFilterAdded(IPC::Channel* channel) OVERRIDE;
@@ -66,6 +67,7 @@ class CONTENT_EXPORT InputEventFilter
InputEventAckState ack_result,
const ui::LatencyInfo& latency_info,
int routing_id);
+ void SendMessage(const IPC::Message& message);
void SendMessageOnIOThread(const IPC::Message& message);
scoped_refptr<base::MessageLoopProxy> main_loop_;

Powered by Google App Engine
This is Rietveld 408576698