summaryrefslogtreecommitdiffstats
path: root/chrome/common/render_messages_internal.h
diff options
context:
space:
mode:
Diffstat (limited to 'chrome/common/render_messages_internal.h')
-rw-r--r--chrome/common/render_messages_internal.h8
1 files changed, 8 insertions, 0 deletions
diff --git a/chrome/common/render_messages_internal.h b/chrome/common/render_messages_internal.h
index 5a32a0b..5e664c3 100644
--- a/chrome/common/render_messages_internal.h
+++ b/chrome/common/render_messages_internal.h
@@ -254,6 +254,10 @@ IPC_BEGIN_MESSAGES(View)
IPC_MESSAGE_ROUTED1(ViewMsg_Zoom,
int /* One of PageZoom::Function */)
+ // Insert text in the currently focused input area.
+ IPC_MESSAGE_ROUTED1(ViewMsg_InsertText,
+ string16 /* text */)
+
// Change encoding of page in the renderer.
IPC_MESSAGE_ROUTED1(ViewMsg_SetPageEncoding,
std::wstring /*new encoding name*/)
@@ -803,6 +807,10 @@ IPC_BEGIN_MESSAGES(ViewHost)
int32 /* page_id */,
GURL /* url of the favicon */)
+ // Request that the browser get the text from the selection clipboard and send
+ // it back to the renderer via ViewMsg_SelectionClipboardResponse.
+ IPC_MESSAGE_ROUTED0(ViewHostMsg_PasteFromSelectionClipboard)
+
// Used to tell the parent that the user right clicked on an area of the
// content area, and a context menu should be shown for it. The params
// object contains information about the node(s) that were selected when the