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

Unified Diff: content/common/input_messages.h

Issue 997283002: Coalesce async touch move events until the ack back from render (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Ack struct and unittest Created 5 years, 7 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 80d30430dedaccc5c8970172e8588afeb17b8dd7..a11caa7232654168892ccb8ee29dd372518ec6a4 100644
--- a/content/common/input_messages.h
+++ b/content/common/input_messages.h
@@ -6,12 +6,14 @@
// order relative to input events.
// Multiply-included message file, hence no include guard.
+#include "base/basictypes.h"
#include "base/strings/string16.h"
#include "content/common/content_export.h"
#include "content/common/content_param_traits.h"
#include "content/common/edit_command.h"
#include "content/common/input/did_overscroll_params.h"
#include "content/common/input/input_event.h"
+#include "content/common/input/input_event_ack.h"
#include "content/common/input/input_event_ack_state.h"
#include "content/common/input/input_param_traits.h"
#include "content/common/input/synthetic_gesture_packet.h"
@@ -106,13 +108,13 @@ IPC_STRUCT_TRAITS_BEGIN(content::SyntheticTapGestureParams)
IPC_STRUCT_TRAITS_MEMBER(duration_ms)
IPC_STRUCT_TRAITS_END()
-IPC_STRUCT_BEGIN(InputHostMsg_HandleInputEvent_ACK_Params)
- IPC_STRUCT_MEMBER(blink::WebInputEvent::Type, type)
- IPC_STRUCT_MEMBER(content::InputEventAckState, state)
- IPC_STRUCT_MEMBER(ui::LatencyInfo, latency)
- // TODO(jdduke): Use Optional<T> type to avoid heap alloc, crbug.com/375002.
- IPC_STRUCT_MEMBER(scoped_ptr<content::DidOverscrollParams>, overscroll)
-IPC_STRUCT_END()
+IPC_STRUCT_TRAITS_BEGIN(content::InputEventAck)
+IPC_STRUCT_TRAITS_MEMBER(type)
+IPC_STRUCT_TRAITS_MEMBER(state)
+IPC_STRUCT_TRAITS_MEMBER(latency)
+IPC_STRUCT_TRAITS_MEMBER(overscroll)
+IPC_STRUCT_TRAITS_MEMBER(unique_touch_event_id)
+IPC_STRUCT_TRAITS_END()
// Sends an input event to the render widget.
IPC_MESSAGE_ROUTED3(InputMsg_HandleInputEvent,
@@ -238,8 +240,7 @@ IPC_MESSAGE_ROUTED0(InputMsg_SyntheticGestureCompleted)
// Messages sent from the renderer to the browser.
// Acknowledges receipt of a InputMsg_HandleInputEvent message.
-IPC_MESSAGE_ROUTED1(InputHostMsg_HandleInputEvent_ACK,
- InputHostMsg_HandleInputEvent_ACK_Params)
+IPC_MESSAGE_ROUTED1(InputHostMsg_HandleInputEvent_ACK, content::InputEventAck)
IPC_MESSAGE_ROUTED1(InputHostMsg_QueueSyntheticGesture,
content::SyntheticGesturePacket)

Powered by Google App Engine
This is Rietveld 408576698