Chromium Code Reviews| Index: chrome/browser/extensions/extension_test_notification_observer.cc |
| diff --git a/chrome/browser/extensions/extension_test_notification_observer.cc b/chrome/browser/extensions/extension_test_notification_observer.cc |
| index c081e6406958a41b1e022bc0a6869282acefd9d5..6f8074aa24a9baccb4e02e7123df70bef10f96b9 100644 |
| --- a/chrome/browser/extensions/extension_test_notification_observer.cc |
| +++ b/chrome/browser/extensions/extension_test_notification_observer.cc |
| @@ -198,7 +198,7 @@ bool ExtensionTestNotificationObserver::WaitForExtensionInstallError() { |
| } |
| void ExtensionTestNotificationObserver::WaitForExtensionLoad() { |
| - WaitForNotification(chrome::NOTIFICATION_EXTENSION_LOADED); |
| + WaitForNotification(chrome::NOTIFICATION_EXTENSION_LOADED_DEPRECATED); |
| } |
| void ExtensionTestNotificationObserver::WaitForExtensionAndViewLoad() { |
| @@ -253,7 +253,7 @@ void ExtensionTestNotificationObserver::Observe( |
| const content::NotificationSource& source, |
| const content::NotificationDetails& details) { |
| switch (type) { |
| - case chrome::NOTIFICATION_EXTENSION_LOADED: |
| + case chrome::NOTIFICATION_EXTENSION_LOADED_DEPRECATED: |
|
sky
2014/04/18 14:11:49
If you're going to change this (which is good) fix
limasdf
2014/04/18 14:22:59
Done.
|
| last_loaded_extension_id_ = |
| content::Details<const Extension>(details).ptr()->id(); |
| VLOG(1) << "Got EXTENSION_LOADED notification."; |