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

Unified Diff: content/common/input_messages.h

Issue 62443007: Replace old with new synthetic gesture framework. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Forward declare SyntheticGestureController. Created 7 years, 1 month 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 603053f750ccc4d5ffb10b3d93a4059ad81bdece..57e51ceef6033f0e9bd2b95c19539c2d4ff6ea65 100644
--- a/content/common/input_messages.h
+++ b/content/common/input_messages.h
@@ -12,6 +12,7 @@
#include "content/common/edit_command.h"
#include "content/common/input/input_event.h"
#include "content/common/input/input_param_traits.h"
+#include "content/common/input/synthetic_gesture_packet.h"
#include "content/common/input/synthetic_gesture_params.h"
#include "content/common/input/synthetic_pinch_gesture_params.h"
#include "content/common/input/synthetic_smooth_scroll_gesture_params.h"
@@ -159,6 +160,8 @@ IPC_MESSAGE_ROUTED3(InputMsg_ActivateNearestFindResult,
float /* y */)
#endif
+IPC_MESSAGE_ROUTED0(InputMsg_SyntheticGestureCompleted);
+
// -----------------------------------------------------------------------------
// Messages sent from the renderer to the browser.
@@ -168,6 +171,9 @@ IPC_MESSAGE_ROUTED3(InputHostMsg_HandleInputEvent_ACK,
content::InputEventAckState /* ack_result */,
ui::LatencyInfo /* latency_info */)
+IPC_MESSAGE_ROUTED1(InputHostMsg_QueueSyntheticGesture,
+ content::SyntheticGesturePacket)
+
// Adding a new message? Stick to the sort order above: first platform
// independent InputMsg, then ifdefs for platform specific InputMsg, then

Powered by Google App Engine
This is Rietveld 408576698