| Index: chrome/browser/extensions/api/file_system/file_system_apitest.cc
|
| diff --git a/chrome/browser/extensions/api/file_system/file_system_apitest.cc b/chrome/browser/extensions/api/file_system/file_system_apitest.cc
|
| index e8e1d71a1571627928601756738a7318ca7e089c..fee48ef7674875afa9ed3e0acc90ddde5f8808df 100644
|
| --- a/chrome/browser/extensions/api/file_system/file_system_apitest.cc
|
| +++ b/chrome/browser/extensions/api/file_system/file_system_apitest.cc
|
| @@ -25,14 +25,14 @@ class AppInstallObserver : public content::NotificationObserver {
|
| base::Callback<void(const Extension*)> callback)
|
| : callback_(callback) {
|
| registrar_.Add(this,
|
| - chrome::NOTIFICATION_EXTENSION_LOADED,
|
| + chrome::NOTIFICATION_EXTENSION_LOADED_DEPRECATED,
|
| content::NotificationService::AllSources());
|
| }
|
|
|
| virtual void Observe(int type,
|
| const content::NotificationSource& source,
|
| const content::NotificationDetails& details) OVERRIDE {
|
| - EXPECT_EQ(chrome::NOTIFICATION_EXTENSION_LOADED, type);
|
| + EXPECT_EQ(chrome::NOTIFICATION_EXTENSION_LOADED_DEPRECATED, type);
|
| callback_.Run(content::Details<const Extension>(details).ptr());
|
| }
|
|
|
|
|