Chromium Code Reviews| Index: chrome/browser/component_updater/pepper_flash_component_installer.cc |
| diff --git a/chrome/browser/component_updater/pepper_flash_component_installer.cc b/chrome/browser/component_updater/pepper_flash_component_installer.cc |
| index 77f678c94a51b87bc4dc46013ec9341fc69017cc..039873cba22a8f877437fe8f77dd3cc4d16625a4 100644 |
| --- a/chrome/browser/component_updater/pepper_flash_component_installer.cc |
| +++ b/chrome/browser/component_updater/pepper_flash_component_installer.cc |
| @@ -18,6 +18,7 @@ |
| #include "base/string_split.h" |
| #include "base/string_util.h" |
| #include "base/stringprintf.h" |
| +#include "base/utf_string_conversions.h" |
| #include "base/values.h" |
| #include "base/version.h" |
| #include "build/build_config.h" |
| @@ -163,12 +164,35 @@ bool MakePepperFlashPluginInfo(const FilePath& flash_path, |
| return true; |
| } |
| +bool IsPepperFlash(const webkit::WebPluginInfo& plugin) { |
| + return webkit::IsPepperPlugin(plugin) && |
| + (plugin.pepper_permissions & ppapi::PERMISSION_FLASH); |
|
cpu_(ooo_6.6-7.5)
2012/10/09 20:00:36
can you add a comment here about this check. I am
Bernhard Bauer
2012/10/09 20:52:40
Will do. I could also use a different criterion to
|
| +} |
| + |
| void RegisterPepperFlashWithChrome(const FilePath& path, |
| const Version& version) { |
| DCHECK(BrowserThread::CurrentlyOn(BrowserThread::UI)); |
| content::PepperPluginInfo plugin_info; |
| if (!MakePepperFlashPluginInfo(path, version, true, &plugin_info)) |
| return; |
| + |
| + std::vector<webkit::WebPluginInfo> plugins; |
| + PluginService::GetInstance()->GetInternalPlugins(&plugins); |
| + for (std::vector<webkit::WebPluginInfo>::const_iterator it = plugins.begin(); |
| + it != plugins.end(); ++it) { |
| + if (!IsPepperFlash(*it)) |
| + continue; |
|
cpu_(ooo_6.6-7.5)
2012/10/09 20:00:36
is this doing IO? do we want to call this instead
Bernhard Bauer
2012/10/09 20:52:40
No, it just asks PluginList for its internal plugi
|
| + |
| + // If the version we're trying to register is older than the existing one, |
| + // don't do it. |
| + if (version.IsOlderThan(UTF16ToUTF8(it->version))) |
| + return; |
| + |
| + // If the version is newer, remove the old one first. |
| + PluginService::GetInstance()->UnregisterInternalPlugin(it->path); |
| + break; |
| + } |
| + |
| bool add_to_front = IsPepperFlashEnabledByDefault(); |
| PluginService::GetInstance()->RegisterInternalPlugin( |
| plugin_info.ToWebPluginInfo(), add_to_front); |