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

Unified Diff: content/common/input_messages.h

Issue 1528153004: Look Up on Force Touch (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 4 years, 11 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 a511d018458f6b00d2ba3efb4c1f5cc308fbadf2..a29d6ff68f46a050e3a871be1f602f0abd2ed255 100644
--- a/content/common/input_messages.h
+++ b/content/common/input_messages.h
@@ -118,6 +118,9 @@ IPC_MESSAGE_ROUTED2(InputMsg_HandleInputEvent,
IPC::WebInputEventPointer /* event */,
ui::LatencyInfo /* latency_info */)
+// Sends coordinates in the web content to the render view.
+IPC_MESSAGE_ROUTED1(InputMsg_SelectWordIfAnyAt, blink::WebPoint /* position */)
+
// Sends the cursor visibility state to the render widget.
IPC_MESSAGE_ROUTED1(InputMsg_CursorVisibilityChange,
bool /* is_visible */)
@@ -271,6 +274,10 @@ IPC_MESSAGE_ROUTED0(InputHostMsg_DidStopFlinging)
// Acknowledges receipt of a InputMsg_MoveCaret message.
IPC_MESSAGE_ROUTED0(InputHostMsg_MoveCaret_ACK)
+// Sent as a response InputMsg_SelectWordIfAnyAt message.
+// This message is only sent if a word has been selected.
+IPC_MESSAGE_ROUTED0(InputHostMsg_DidSelectWordAt)
+
// Acknowledges receipt of a InputMsg_MoveRangeSelectionExtent message.
IPC_MESSAGE_ROUTED0(InputHostMsg_MoveRangeSelectionExtent_ACK)

Powered by Google App Engine
This is Rietveld 408576698