| Index: chrome/browser/extensions/plugin_manager.cc
|
| diff --git a/chrome/browser/extensions/plugin_manager.cc b/chrome/browser/extensions/plugin_manager.cc
|
| index f94fd28b533a1daff973854cb82ea0338c3fb4a1..62dfbe3b407ba150bd7374903093f4e8b7ab6d5f 100644
|
| --- a/chrome/browser/extensions/plugin_manager.cc
|
| +++ b/chrome/browser/extensions/plugin_manager.cc
|
| @@ -31,7 +31,7 @@ PluginManager::PluginManager(content::BrowserContext* context)
|
| chrome::NOTIFICATION_EXTENSION_LOADED,
|
| content::Source<Profile>(profile_));
|
| registrar_.Add(this,
|
| - chrome::NOTIFICATION_EXTENSION_UNLOADED,
|
| + chrome::NOTIFICATION_EXTENSION_UNLOADED_DEPRECATED,
|
| content::Source<Profile>(profile_));
|
| }
|
|
|
| @@ -90,7 +90,7 @@ void PluginManager::Observe(int type,
|
| if (plugins_or_nacl_changed)
|
| PluginService::GetInstance()->PurgePluginListCache(profile_, false);
|
|
|
| - } else if (type == chrome::NOTIFICATION_EXTENSION_UNLOADED) {
|
| + } else if (type == chrome::NOTIFICATION_EXTENSION_UNLOADED_DEPRECATED) {
|
| const Extension* extension =
|
| content::Details<UnloadedExtensionInfo>(details)->extension;
|
|
|
|
|