| Index: chrome/browser/renderer_host/resource_message_filter.h
|
| diff --git a/chrome/browser/renderer_host/resource_message_filter.h b/chrome/browser/renderer_host/resource_message_filter.h
|
| index 0123ce6f49117141a0559468d0a29c54a47477ac..b4382ffb049cee2fbf9697933a09d6b24b471e5a 100644
|
| --- a/chrome/browser/renderer_host/resource_message_filter.h
|
| +++ b/chrome/browser/renderer_host/resource_message_filter.h
|
| @@ -180,19 +180,19 @@ class ResourceMessageFilter : public IPC::ChannelProxy::MessageFilter,
|
| #endif
|
| void OnGetPlugins(bool refresh, IPC::Message* reply_msg);
|
| void OnGetPluginsOnFileThread(bool refresh, IPC::Message* reply_msg);
|
| - void OnGetPluginInfo(const GURL& url,
|
| - const GURL& policy_url,
|
| - const std::string& mime_type,
|
| - IPC::Message* reply_msg);
|
| + void OnGetPluginInfoArray(const GURL& url,
|
| + const GURL& policy_url,
|
| + const std::string& mime_type,
|
| + IPC::Message* reply_msg);
|
| void OnGetPluginInfoOnFileThread(const GURL& url,
|
| const GURL& policy_url,
|
| const std::string& mime_type,
|
| IPC::Message* reply_msg);
|
| - void OnGotPluginInfo(bool found,
|
| - WebPluginInfo info,
|
| - const std::string& actual_mime_type,
|
| - const GURL& policy_url,
|
| - IPC::Message* reply_msg);
|
| + void OnGotPluginInfo(
|
| + std::vector<WebPluginInfo> info,
|
| + const std::vector<std::string>& actual_mime_types,
|
| + const GURL& policy_url,
|
| + IPC::Message* reply_msg);
|
| void OnOpenChannelToPlugin(const GURL& url,
|
| const std::string& mime_type,
|
| const std::string& locale,
|
|
|