Index: chrome/browser/extensions/extension_toolbar_model.cc |
diff --git a/chrome/browser/extensions/extension_toolbar_model.cc b/chrome/browser/extensions/extension_toolbar_model.cc |
index d155b4ac8aa6841f9d377d2e6a2c15c6c9fdd185..fd8fa3b246048ba1aa154ba52889d4777422b005 100644 |
--- a/chrome/browser/extensions/extension_toolbar_model.cc |
+++ b/chrome/browser/extensions/extension_toolbar_model.cc |
@@ -210,8 +210,9 @@ void ExtensionToolbarModel::Observe( |
int type, |
const content::NotificationSource& source, |
const content::NotificationDetails& details) { |
- DCHECK_EQ(chrome::NOTIFICATION_EXTENSION_BROWSER_ACTION_VISIBILITY_CHANGED, |
- type); |
+ DCHECK_EQ( |
+ extensions::NOTIFICATION_EXTENSION_BROWSER_ACTION_VISIBILITY_CHANGED, |
+ type); |
const Extension* extension = |
ExtensionRegistry::Get(profile_)->GetExtensionById( |
*content::Details<const std::string>(details).ptr(), |
@@ -232,7 +233,7 @@ void ExtensionToolbarModel::OnReady() { |
extension_registry_observer_.Add(registry); |
registrar_.Add( |
this, |
- chrome::NOTIFICATION_EXTENSION_BROWSER_ACTION_VISIBILITY_CHANGED, |
+ extensions::NOTIFICATION_EXTENSION_BROWSER_ACTION_VISIBILITY_CHANGED, |
content::Source<ExtensionPrefs>(extension_prefs_)); |
} |