Index: chrome/browser/extensions/extension_view_host.cc |
diff --git a/chrome/browser/extensions/extension_view_host.cc b/chrome/browser/extensions/extension_view_host.cc |
index 84e99e7374d7e00c9559c7abd4050223a245e61c..7c382a656930b2675eec11ee8e25802b2e4375ac 100644 |
--- a/chrome/browser/extensions/extension_view_host.cc |
+++ b/chrome/browser/extensions/extension_view_host.cc |
@@ -117,7 +117,7 @@ void ExtensionViewHost::LoadInitialURL() { |
runtime_data()->IsBackgroundPageReady(extension())) { |
// Make sure the background page loads before any others. |
registrar()->Add(this, |
- chrome::NOTIFICATION_EXTENSION_BACKGROUND_PAGE_READY, |
+ extensions::NOTIFICATION_EXTENSION_BACKGROUND_PAGE_READY, |
content::Source<Extension>(extension())); |
return; |
} |
@@ -305,7 +305,7 @@ WebContents* ExtensionViewHost::GetVisibleWebContents() const { |
void ExtensionViewHost::Observe(int type, |
const content::NotificationSource& source, |
const content::NotificationDetails& details) { |
- if (type == chrome::NOTIFICATION_EXTENSION_BACKGROUND_PAGE_READY) { |
+ if (type == extensions::NOTIFICATION_EXTENSION_BACKGROUND_PAGE_READY) { |
DCHECK(ExtensionSystem::Get(browser_context())-> |
runtime_data()->IsBackgroundPageReady(extension())); |
LoadInitialURL(); |