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

Unified Diff: content/browser/renderer_host/render_message_filter.h

Issue 7990005: Use a placeholder instead of the default plugin for missing plug-ins on Mac and Linux. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: '' Created 9 years, 3 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/browser/renderer_host/render_message_filter.h
diff --git a/content/browser/renderer_host/render_message_filter.h b/content/browser/renderer_host/render_message_filter.h
index 9922ba164b9d22a63cf469c5ee98b2d3d7ba5b2a..311492bdb24cfd1b24cb17c1713e747cfdf5f826 100644
--- a/content/browser/renderer_host/render_message_filter.h
+++ b/content/browser/renderer_host/render_message_filter.h
@@ -159,13 +159,14 @@ class RenderMessageFilter : public BrowserMessageFilter {
void OnGetPlugins(bool refresh, IPC::Message* reply_msg);
void GetPluginsCallback(IPC::Message* reply_msg,
const std::vector<webkit::WebPluginInfo>& plugins);
- void OnGetPluginInfo(int routing_id,
- const GURL& url,
- const GURL& policy_url,
- const std::string& mime_type,
- bool* found,
- webkit::WebPluginInfo* info,
- std::string* actual_mime_type);
+ void OnGetMatchingPlugins(
+ int routing_id,
+ const GURL& url,
+ const GURL& page_url,
+ const std::string& mime_type,
+ std::vector<webkit::WebPluginInfo>* plugins,
+ std::vector<std::string>* mime_types,
+ std::vector<bool>* allowed);
void OnOpenChannelToPlugin(int routing_id,
const GURL& url,
const GURL& policy_url,

Powered by Google App Engine
This is Rietveld 408576698