| Index: content/browser/plugin_service.cc
|
| diff --git a/content/browser/plugin_service.cc b/content/browser/plugin_service.cc
|
| index f6d61d6e189a7e71ec26fac3760bfdf100dba488..8e62fbf729e337e5e2f494f52f29198307c36746 100644
|
| --- a/content/browser/plugin_service.cc
|
| +++ b/content/browser/plugin_service.cc
|
| @@ -472,6 +472,18 @@ void PluginService::FinishOpenChannelToPlugin(
|
| }
|
| }
|
|
|
| +bool PluginService::GetPluginInfoArray(
|
| + const GURL& url,
|
| + const std::string& mime_type,
|
| + bool allow_wildcard,
|
| + std::vector<webkit::WebPluginInfo>* plugins,
|
| + std::vector<std::string>* actual_mime_types) {
|
| + bool use_stale = false;
|
| + webkit::npapi::PluginList::Singleton()->GetPluginInfoArray(
|
| + url, mime_type, allow_wildcard, &use_stale, plugins, actual_mime_types);
|
| + return use_stale;
|
| +}
|
| +
|
| bool PluginService::GetPluginInfo(int render_process_id,
|
| int render_view_id,
|
| const content::ResourceContext& context,
|
|
|