Index: chrome/browser/extensions/api/system_indicator/system_indicator_manager.cc |
diff --git a/chrome/browser/extensions/api/system_indicator/system_indicator_manager.cc b/chrome/browser/extensions/api/system_indicator/system_indicator_manager.cc |
index dd50c9aab9db8abcb9f4f006cfb0d3ff7fd7e554..f0e8c35966e9d40bb591cab609635d1b5c1ceb6c 100644 |
--- a/chrome/browser/extensions/api/system_indicator/system_indicator_manager.cc |
+++ b/chrome/browser/extensions/api/system_indicator/system_indicator_manager.cc |
@@ -123,7 +123,7 @@ ExtensionIndicatorIcon::ExtensionIndicatorIcon(const Extension* extension, |
SystemIndicatorManager::SystemIndicatorManager(Profile* profile, |
StatusTray* status_tray) |
: profile_(profile), status_tray_(status_tray) { |
- registrar_.Add(this, chrome::NOTIFICATION_EXTENSION_UNLOADED, |
+ registrar_.Add(this, chrome::NOTIFICATION_EXTENSION_UNLOADED_DEPRECATED, |
content::Source<Profile>(profile_->GetOriginalProfile())); |
registrar_.Add(this, chrome::NOTIFICATION_EXTENSION_SYSTEM_INDICATOR_UPDATED, |
content::Source<Profile>(profile_->GetOriginalProfile())); |
@@ -144,7 +144,7 @@ void SystemIndicatorManager::Observe( |
DCHECK(thread_checker_.CalledOnValidThread()); |
switch (type) { |
- case chrome::NOTIFICATION_EXTENSION_UNLOADED: |
+ case chrome::NOTIFICATION_EXTENSION_UNLOADED_DEPRECATED: |
RemoveIndicator( |
content::Details<UnloadedExtensionInfo>(details)->extension->id()); |
break; |