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

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: Additional small fix to visitedlink (forgot to change one CreateRenderView call) 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
« no previous file with comments | « content/common/browser_plugin_messages.h ('k') | content/renderer/browser_plugin/browser_plugin.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: content/common/view_messages.h
diff --git a/content/common/view_messages.h b/content/common/view_messages.h
index d64536b0a38473922eec853429c9f399c26ed494..04f8c0ddfd36eb71974bba8ec45a72def5a2ca85 100644
--- a/content/common/view_messages.h
+++ b/content/common/view_messages.h
@@ -629,6 +629,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)
@@ -673,6 +683,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()
« no previous file with comments | « content/common/browser_plugin_messages.h ('k') | content/renderer/browser_plugin/browser_plugin.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698