| Index: content/common/view_messages.h
|
| diff --git a/content/common/view_messages.h b/content/common/view_messages.h
|
| index ae5b9135054ce0b9f537a0d680a4bf166faf2ec4..bac9000026a34a14055f51e46ae838b3ab93e646 100644
|
| --- a/content/common/view_messages.h
|
| +++ b/content/common/view_messages.h
|
| @@ -627,6 +627,16 @@ IPC_STRUCT_BEGIN(ViewMsg_Navigate_Params)
|
|
|
| // Whether or not we should allow the url to download.
|
| IPC_STRUCT_MEMBER(bool, allow_download)
|
| +
|
| + // The name of the channel with which a guest talks to its embedder.
|
| + // If this newly created RenderView has no embedder this string will be
|
| + // empty.
|
| + IPC_STRUCT_MEMBER(std::string, embedder_channel_name)
|
| +
|
| + // The identifier in the embedder render process of the container hosting this
|
| + // guest RenderView. The embedder_channel_name and embedder_container_id
|
| + // together uniquely identify a browser plugin instance.
|
| + IPC_STRUCT_MEMBER(int, embedder_container_id)
|
| IPC_STRUCT_END()
|
|
|
| IPC_STRUCT_BEGIN(ViewMsg_New_Params)
|
| @@ -671,6 +681,11 @@ IPC_STRUCT_BEGIN(ViewMsg_New_Params)
|
| // empty.
|
| IPC_STRUCT_MEMBER(std::string, embedder_channel_name)
|
|
|
| + // The identifier in the embedder render process of the container hosting this
|
| + // guest RenderView. The embedder_channel_name and embedder_container_id
|
| + // together uniquely identify a browser plugin instance.
|
| + IPC_STRUCT_MEMBER(int, embedder_container_id)
|
| +
|
| // The accessibility mode of the renderer.
|
| IPC_STRUCT_MEMBER(AccessibilityMode, accessibility_mode)
|
| IPC_STRUCT_END()
|
|
|