Index: content/common/view_messages.h |
diff --git a/content/common/view_messages.h b/content/common/view_messages.h |
index a0b46680e8e90d742ce3456145b23e4f1a529744..0384d268596aef411244d7b91a71ca9f777b7957 100644 |
--- a/content/common/view_messages.h |
+++ b/content/common/view_messages.h |
@@ -1545,16 +1545,14 @@ IPC_SYNC_MESSAGE_CONTROL1_1(ViewHostMsg_GetPlugins, |
std::vector<webkit::npapi::WebPluginInfo> /* plugins */) |
// Return information about a plugin for the given URL and MIME |
-// type. If there is no matching plugin, |found| is false. If |
-// |enabled| in the WebPluginInfo struct is false, the plug-in is |
-// treated as if it was not installed at all. |
+// type. If there is no matching plugin, |found| is false. |
// |actual_mime_type| is the actual mime type supported by the |
// plugin found that match the URL given (one for each item in |
// |info|). |
IPC_SYNC_MESSAGE_CONTROL4_3(ViewHostMsg_GetPluginInfo, |
int /* routing_id */, |
GURL /* url */, |
- GURL /* policy_url */, |
+ GURL /* page_url */, |
std::string /* mime_type */, |
bool /* found */, |
webkit::npapi::WebPluginInfo /* plugin info */, |
@@ -1564,9 +1562,10 @@ IPC_SYNC_MESSAGE_CONTROL4_3(ViewHostMsg_GetPluginInfo, |
// create a plugin. The browser will create the plugin process if |
// necessary, and will return a handle to the channel on success. |
// On error an empty string is returned. |
-IPC_SYNC_MESSAGE_CONTROL3_2(ViewHostMsg_OpenChannelToPlugin, |
+IPC_SYNC_MESSAGE_CONTROL4_2(ViewHostMsg_OpenChannelToPlugin, |
int /* routing_id */, |
GURL /* url */, |
+ GURL /* page_url */, |
std::string /* mime_type */, |
IPC::ChannelHandle /* channel_handle */, |
webkit::npapi::WebPluginInfo /* info */) |