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

Unified Diff: content/common/browser_plugin_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/browser_plugin_messages.h
diff --git a/content/common/browser_plugin_messages.h b/content/common/browser_plugin_messages.h
index ae4c622c646f4335f42b70749b7e9d0f41a988ad..ddb38c1e75040c11468eb5e71229ed8630dba4bd 100644
--- a/content/common/browser_plugin_messages.h
+++ b/content/common/browser_plugin_messages.h
@@ -26,11 +26,10 @@
// A renderer sends this to the browser process when it wants to
// create a browser plugin. The browser will create a guest renderer process
// if necessary.
-IPC_MESSAGE_ROUTED4(BrowserPluginHostMsg_NavigateFromEmbedder,
+IPC_MESSAGE_ROUTED3(BrowserPluginHostMsg_NavigateFromEmbedder,
int /* plugin instance id*/,
long long /* frame id */,
- std::string /* src */,
- gfx::Size /* size */)
+ std::string /* src */)
// Initially before we create a guest renderer, browser plugin containers
// have a placeholder called BrowserPlugin where each BrowserPlugin has a unique
@@ -54,11 +53,12 @@ IPC_MESSAGE_ROUTED2(BrowserPluginHostMsg_MapInstance,
PP_Instance /* instance */)
// -----------------------------------------------------------------------------
-// These messages are from the browser process to the guest renderer.
+// These messages are from the embedder render process to the guest render
+// process.
-IPC_MESSAGE_CONTROL2(BrowserPluginMsg_CompleteNavigation,
- int /* guest_routing_id */,
- PP_Instance /* instance */)
+IPC_MESSAGE_CONTROL2(BrowserPluginMsg_GuestReady,
+ PP_Instance /* instance */,
+ int /* embedder_container_id */)
// -----------------------------------------------------------------------------
// These messages are from the guest renderer to the browser process

Powered by Google App Engine
This is Rietveld 408576698