| Index: chrome/browser/extensions/plugin_manager.cc
|
| diff --git a/chrome/browser/extensions/plugin_manager.cc b/chrome/browser/extensions/plugin_manager.cc
|
| index 62dfbe3b407ba150bd7374903093f4e8b7ab6d5f..57506d12d67dd63616b89cb196746c21b622a2d2 100644
|
| --- a/chrome/browser/extensions/plugin_manager.cc
|
| +++ b/chrome/browser/extensions/plugin_manager.cc
|
| @@ -28,7 +28,7 @@ namespace extensions {
|
| PluginManager::PluginManager(content::BrowserContext* context)
|
| : profile_(Profile::FromBrowserContext(context)) {
|
| registrar_.Add(this,
|
| - chrome::NOTIFICATION_EXTENSION_LOADED,
|
| + chrome::NOTIFICATION_EXTENSION_LOADED_DEPRECATED,
|
| content::Source<Profile>(profile_));
|
| registrar_.Add(this,
|
| chrome::NOTIFICATION_EXTENSION_UNLOADED_DEPRECATED,
|
| @@ -50,7 +50,7 @@ PluginManager::GetFactoryInstance() {
|
| void PluginManager::Observe(int type,
|
| const content::NotificationSource& source,
|
| const content::NotificationDetails& details) {
|
| - if (type == chrome::NOTIFICATION_EXTENSION_LOADED) {
|
| + if (type == chrome::NOTIFICATION_EXTENSION_LOADED_DEPRECATED) {
|
| const Extension* extension =
|
| content::Details<const Extension>(details).ptr();
|
|
|
|
|