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

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

Issue 1003023002: Signal input flush when all flings have terminated (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Fix test compile Created 5 years, 9 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/common/view_messages.h ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: content/renderer/input/input_event_filter.cc
diff --git a/content/renderer/input/input_event_filter.cc b/content/renderer/input/input_event_filter.cc
index 6c78d57b0213ecbfbc1ce152e3052783e466807c..180be389354052d41f59adf08e1000f71da72ef9 100644
--- a/content/renderer/input/input_event_filter.cc
+++ b/content/renderer/input/input_event_filter.cc
@@ -79,8 +79,7 @@ void InputEventFilter::DidOverscroll(int routing_id,
}
void InputEventFilter::DidStopFlinging(int routing_id) {
- SendMessage(
- scoped_ptr<IPC::Message>(new ViewHostMsg_DidStopFlinging(routing_id)));
+ SendMessage(make_scoped_ptr(new InputHostMsg_DidStopFlinging(routing_id)));
}
void InputEventFilter::OnFilterAdded(IPC::Sender* sender) {
« no previous file with comments | « content/common/view_messages.h ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698