diff options
author | fsamuel <fsamuel@chromium.org> | 2014-12-03 12:16:52 -0800 |
---|---|---|
committer | Commit bot <commit-bot@chromium.org> | 2014-12-03 20:17:09 +0000 |
commit | a95fef4232d44e8f102e20afe0c49009742f4857 (patch) | |
tree | 8343a0cd4007d9ee93d321f14a16d5c5ef106f6a /extensions/common/extension_messages.h | |
parent | dcbcbd479e2b6effd7bbbb77a01853aa190442ba (diff) | |
download | chromium_src-a95fef4232d44e8f102e20afe0c49009742f4857.zip chromium_src-a95fef4232d44e8f102e20afe0c49009742f4857.tar.gz chromium_src-a95fef4232d44e8f102e20afe0c49009742f4857.tar.bz2 |
Plumb GuestView Detach API
This is the beginnings of plumbing of the guestview detach API.
BUG=434226
Review URL: https://codereview.chromium.org/772693002
Cr-Commit-Position: refs/heads/master@{#306660}
Diffstat (limited to 'extensions/common/extension_messages.h')
-rw-r--r-- | extensions/common/extension_messages.h | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/extensions/common/extension_messages.h b/extensions/common/extension_messages.h index d3b8c3b..f388cf1 100644 --- a/extensions/common/extension_messages.h +++ b/extensions/common/extension_messages.h @@ -547,6 +547,13 @@ IPC_MESSAGE_ROUTED2(ExtensionMsg_GuestAttached, int /* element_instance_id */, int /* source_routing_id */) +// This IPC tells the browser process to detach the provided +// |element_instance_id| from a GuestViewBase if it is attached to one. +// In other words, routing of input and graphics will no longer flow through +// the container associated with the provided ID. +IPC_MESSAGE_ROUTED1(ExtensionMsg_GuestDetached, + int /* element_instance_id*/) + // Messages sent from the renderer to the browser. // A renderer sends this message when an extension process starts an API |