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

Unified Diff: content/common/input_messages.h

Issue 19670007: Send input event's LatencyInfo back from renderer to browser when acked (Closed) Base URL: http://git.chromium.org/chromium/src.git@master
Patch Set: change PopTouchEventWithAck(ack) to PopTouchEventToClient(ack, latency_info) Created 7 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/common/input_messages.h
diff --git a/content/common/input_messages.h b/content/common/input_messages.h
index 4da6df591134a6b267279dd385785b6a3c56ecda..2a7020ebf75f7c2ea9c910d64b9bdb75c63c6388 100644
--- a/content/common/input_messages.h
+++ b/content/common/input_messages.h
@@ -126,9 +126,10 @@ IPC_MESSAGE_ROUTED3(InputMsg_ActivateNearestFindResult,
// Messages sent from the renderer to the browser.
// Acknowledges receipt of a InputMsg_HandleInputEvent message.
-IPC_MESSAGE_ROUTED2(InputHostMsg_HandleInputEvent_ACK,
+IPC_MESSAGE_ROUTED3(InputHostMsg_HandleInputEvent_ACK,
WebKit::WebInputEvent::Type,
- content::InputEventAckState /* ack_result */)
+ content::InputEventAckState /* ack_result */,
+ ui::LatencyInfo /* latency_info */)
// Adding a new message? Stick to the sort order above: first platform

Powered by Google App Engine
This is Rietveld 408576698