Index: content/common/view_messages.h |
diff --git a/content/common/view_messages.h b/content/common/view_messages.h |
index d6b7fe9bbaa43ba3839da55f19741ee4864898f0..bcae596fba880964e5478b2928d730ed62756955 100644 |
--- a/content/common/view_messages.h |
+++ b/content/common/view_messages.h |
@@ -1773,6 +1773,16 @@ IPC_MESSAGE_ROUTED3(ViewHostMsg_UpdateZoomLimits, |
int /* maximum_percent */, |
bool /* remember */) |
+// Sent by the renderer to check if a URL has permission to trigger a clipboard |
+// read/write operation from the DOM. |
+IPC_SYNC_MESSAGE_ROUTED1_1(ViewHostMsg_CanTriggerClipboardRead, |
+ GURL /* url */, |
+ bool /* allowed */) |
+IPC_SYNC_MESSAGE_ROUTED1_1(ViewHostMsg_CanTriggerClipboardWrite, |
+ GURL /* url */, |
+ bool /* allowed */) |
+ |
+ |
// Asks the browser to create a block of shared memory for the renderer to |
// fill in and pass back to the browser. |
IPC_SYNC_MESSAGE_CONTROL1_1(ViewHostMsg_AllocateSharedMemoryBuffer, |