Index: chrome/browser/performance_monitor/performance_monitor.cc |
diff --git a/chrome/browser/performance_monitor/performance_monitor.cc b/chrome/browser/performance_monitor/performance_monitor.cc |
index 889339c8602a221ccc33ee230d5c9c57bba72b92..359cabcdedbba7d873dc7f2b8aa15fc566b502d9 100644 |
--- a/chrome/browser/performance_monitor/performance_monitor.cc |
+++ b/chrome/browser/performance_monitor/performance_monitor.cc |
@@ -229,8 +229,9 @@ void PerformanceMonitor::RegisterForNotifications() { |
DCHECK(database_logging_enabled_); |
// Extensions |
- registrar_.Add(this, chrome::NOTIFICATION_EXTENSION_INSTALLED, |
- content::NotificationService::AllSources()); |
+ registrar_.Add(this, |
+ chrome::NOTIFICATION_EXTENSION_INSTALLED_DEPRECATED, |
+ content::NotificationService::AllSources()); |
registrar_.Add(this, chrome::NOTIFICATION_EXTENSION_ENABLED, |
content::NotificationService::AllSources()); |
registrar_.Add(this, chrome::NOTIFICATION_EXTENSION_UNLOADED_DEPRECATED, |
@@ -554,7 +555,7 @@ void PerformanceMonitor::Observe(int type, |
DCHECK(database_logging_enabled_); |
switch (type) { |
- case chrome::NOTIFICATION_EXTENSION_INSTALLED: { |
+ case chrome::NOTIFICATION_EXTENSION_INSTALLED_DEPRECATED: { |
AddExtensionEvent( |
EVENT_EXTENSION_INSTALL, |
content::Details<const extensions::InstalledExtensionInfo>(details)-> |