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

Unified Diff: content/common/browser_plugin_messages.h

Issue 11826005: Browser Plugin: Implement BrowserPluginObserver. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Merge with ToT Created 7 years, 10 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 | « no previous file | content/content_renderer.gypi » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: content/common/browser_plugin_messages.h
diff --git a/content/common/browser_plugin_messages.h b/content/common/browser_plugin_messages.h
index 8c111e154952ee743b8b59fa21fd666207ea6c05..9f6ebd4a3dc23047883d425ecd8d9b83e12404ce 100644
--- a/content/common/browser_plugin_messages.h
+++ b/content/common/browser_plugin_messages.h
@@ -136,6 +136,12 @@ IPC_STRUCT_END()
IPC_MESSAGE_ROUTED1(BrowserPluginHostMsg_AllocateInstanceID,
int /* request_id */)
+// Used by the embedder process to forward messages to
+// BrowserPluginGuestObservers.
+IPC_MESSAGE_ROUTED2(BrowserPluginHostMsg_ForwardMessage,
+ int /* instance_id */,
+ IPC::Message /* message */)
+
// This message is sent to the browser process to enable or disable autosize
// mode.
IPC_MESSAGE_ROUTED3(
@@ -272,6 +278,11 @@ IPC_MESSAGE_ROUTED2(BrowserPluginMsg_AllocateInstanceID_ACK,
int /* request_id */,
int /* instance_id */)
+// Used by the browser process to forward messages to BrowserPluginObservers.
+IPC_MESSAGE_ROUTED2(BrowserPluginMsg_ForwardMessage,
+ int /* instance_id */,
+ IPC::Message /* message */)
+
// 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,
« no previous file with comments | « no previous file | content/content_renderer.gypi » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698