Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(1513)

Unified Diff: content/common/view_messages.h

Issue 10412056: Browser Plugin: Remove MapInstance from BrowserPluginHost + More cross-process navigation work (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Simplified size logic Created 8 years, 7 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
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()

Powered by Google App Engine
This is Rietveld 408576698