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

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

Issue 245833002: Implement async touchmove dispatch during scroll (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: More testing Created 6 years, 8 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.cc
diff --git a/content/renderer/input/input_event_filter.cc b/content/renderer/input/input_event_filter.cc
index c20879819119fe52605f76cbd25e0573ea8c5e45..39eafa0f4b3a5002bdbeecbe8c91bd35279d5238 100644
--- a/content/renderer/input/input_event_filter.cc
+++ b/content/renderer/input/input_event_filter.cc
@@ -171,7 +171,7 @@ void InputEventFilter::ForwardToHandler(const IPC::Message& message) {
return;
}
- if (!WebInputEventTraits::IgnoresAckDisposition(event->type))
+ if (!WebInputEventTraits::IgnoresAckDisposition(*event))
SendACK(event->type, ack, latency_info, routing_id);
}

Powered by Google App Engine
This is Rietveld 408576698