Index: chrome/browser/sync/test/integration/sync_extension_installer.cc |
diff --git a/chrome/browser/sync/test/integration/sync_extension_installer.cc b/chrome/browser/sync/test/integration/sync_extension_installer.cc |
index a97b702f71f787fdbd83476e59ab8f3d0ac5b67a..9d08d1a51ea787c3d9621fba832282c100d924b9 100644 |
--- a/chrome/browser/sync/test/integration/sync_extension_installer.cc |
+++ b/chrome/browser/sync/test/integration/sync_extension_installer.cc |
@@ -15,7 +15,7 @@ SyncedExtensionInstaller::SyncedExtensionInstaller(Profile* profile) |
weak_ptr_factory_(this) { |
DoInstallSyncedExtensions(); |
registrar_.Add(this, |
- chrome::NOTIFICATION_EXTENSION_UPDATING_STARTED, |
+ extensions::NOTIFICATION_EXTENSION_UPDATING_STARTED, |
content::Source<Profile>(profile_)); |
} |
@@ -26,7 +26,7 @@ void SyncedExtensionInstaller::Observe( |
int type, |
const content::NotificationSource& source, |
const content::NotificationDetails& details) { |
- DCHECK_EQ(chrome::NOTIFICATION_EXTENSION_UPDATING_STARTED, type); |
+ DCHECK_EQ(extensions::NOTIFICATION_EXTENSION_UPDATING_STARTED, type); |
// The extension system is trying to check for updates. In the real world, |
// this would be where synced extensions are asynchronously downloaded from |