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

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

Issue 2233543002: Make first TouchStart and first TouchMove events on a flinging layer non-blocking (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: new fling Created 4 years, 4 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/render_widget_input_handler.h
diff --git a/content/renderer/input/render_widget_input_handler.h b/content/renderer/input/render_widget_input_handler.h
index 85af7b790405d8101de65301c8abde0cec0fe748..66b151ae747f170803e26d70b20b48083706c288 100644
--- a/content/renderer/input/render_widget_input_handler.h
+++ b/content/renderer/input/render_widget_input_handler.h
@@ -105,6 +105,9 @@ class CONTENT_EXPORT RenderWidgetInputHandler {
// Whether we should not send ack for the current mouse move.
bool ignore_ack_for_mouse_move_from_debugger_;
+ // True if waiting on first touch move after a touch start.
dtapuska 2016/08/10 14:47:42 ditto. If the event conveyed this info; then we wo
+ bool waiting_for_first_touch_move_;
+
std::unique_ptr<InputEventAck> pending_input_event_ack_;
DISALLOW_COPY_AND_ASSIGN(RenderWidgetInputHandler);

Powered by Google App Engine
This is Rietveld 408576698