diff options
Diffstat (limited to 'chrome/browser/extensions/extension_navigation_observer.cc')
-rw-r--r-- | chrome/browser/extensions/extension_navigation_observer.cc | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/chrome/browser/extensions/extension_navigation_observer.cc b/chrome/browser/extensions/extension_navigation_observer.cc index f093c62..a08a9ec 100644 --- a/chrome/browser/extensions/extension_navigation_observer.cc +++ b/chrome/browser/extensions/extension_navigation_observer.cc @@ -8,7 +8,7 @@ #include "chrome/browser/profiles/profile.h" #include "content/browser/tab_contents/navigation_controller.h" #include "content/browser/tab_contents/navigation_entry.h" -#include "content/common/notification_service.h" +#include "content/public/browser/notification_service.h" ExtensionNavigationObserver::ExtensionNavigationObserver(Profile* profile) : profile_(profile) { @@ -37,7 +37,7 @@ void ExtensionNavigationObserver::Observe( void ExtensionNavigationObserver::RegisterForNotifications() { registrar_.Add(this, content::NOTIFICATION_NAV_ENTRY_COMMITTED, - NotificationService::AllSources()); + content::NotificationService::AllSources()); } void ExtensionNavigationObserver::PromptToEnableExtensionIfNecessary( |