Index: content/common/browser_plugin/browser_plugin_messages.h |
diff --git a/content/common/browser_plugin/browser_plugin_messages.h b/content/common/browser_plugin/browser_plugin_messages.h |
index 86d04f83dbd574ad7b8d690567a0879a259aee9d..5c587be11e1ac268938f76757230d87fc93def5c 100644 |
--- a/content/common/browser_plugin/browser_plugin_messages.h |
+++ b/content/common/browser_plugin/browser_plugin_messages.h |
@@ -70,6 +70,12 @@ IPC_STRUCT_BEGIN(BrowserPluginHostMsg_CreateGuest_Params) |
resize_guest_params) |
IPC_STRUCT_END() |
+IPC_STRUCT_BEGIN(BrowserPluginMsg_Attach_ACK_Params) |
+ IPC_STRUCT_MEMBER(std::string, storage_partition_id) |
+ IPC_STRUCT_MEMBER(bool, persist_storage) |
+ IPC_STRUCT_MEMBER(std::string, name) |
+IPC_STRUCT_END() |
+ |
IPC_STRUCT_BEGIN(BrowserPluginMsg_LoadCommit_Params) |
// The current URL of the guest. |
IPC_STRUCT_MEMBER(GURL, url) |
@@ -290,6 +296,15 @@ IPC_MESSAGE_ROUTED2(BrowserPluginMsg_AllocateInstanceID_ACK, |
int /* request_id */, |
int /* instance_id */) |
+ |
+// This message is sent in response to a completed attachment of a guest |
+// to a BrowserPlugin. This message carries information about the guest |
+// that is used to update the attributes of the browser plugin. |
+IPC_MESSAGE_CONTROL2(BrowserPluginMsg_Attach_ACK, |
+ int /* instance_id */, |
+ BrowserPluginMsg_Attach_ACK_Params /* params */) |
+ |
+ |
lazyboy
2013/03/25 18:12:55
nit: Remove extra newline.
Fady Samuel
2013/03/25 19:28:20
Done.
|
// Once the swapped out guest RenderView has been created in the embedder render |
// process, the browser process informs the embedder of its routing ID. |
IPC_MESSAGE_CONTROL2(BrowserPluginMsg_GuestContentWindowReady, |