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

Unified Diff: content/common/input_messages.h

Issue 1050993004: Route touchmove existence notifications to the TouchEventQueue (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Rebase Created 5 years, 3 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/common/input_messages.h
diff --git a/content/common/input_messages.h b/content/common/input_messages.h
index 85796f715f08de65a205c2730db9efd30cf85600..4fe3eaceadeef5fa442df3818cb5be8226fc924e 100644
--- a/content/common/input_messages.h
+++ b/content/common/input_messages.h
@@ -259,6 +259,13 @@ IPC_MESSAGE_ROUTED1(InputHostMsg_HandleInputEvent_ACK,
IPC_MESSAGE_ROUTED1(InputHostMsg_QueueSyntheticGesture,
content::SyntheticGesturePacket)
+// Notifies whether there are JavaScript touch event handlers or not.
+IPC_MESSAGE_ROUTED1(InputHostMsg_HasTouchEventHandlers, bool /* has_handlers */)
+
+// Notifies whether there are JavaScript touchmove event handlers or not.
+IPC_MESSAGE_ROUTED1(InputHostMsg_HasTouchMoveEventHandlers,
+ bool /* has_handlers */)
+
// Notifies the allowed touch actions for a new touch point.
IPC_MESSAGE_ROUTED1(InputHostMsg_SetTouchAction,
content::TouchAction /* touch_action */)
« no previous file with comments | « content/browser/renderer_host/render_widget_host_view_aura_unittest.cc ('k') | content/common/view_messages.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698