| Index: chrome/browser/extensions/extension_navigation_observer.cc
|
| ===================================================================
|
| --- chrome/browser/extensions/extension_navigation_observer.cc (revision 106237)
|
| +++ chrome/browser/extensions/extension_navigation_observer.cc (working copy)
|
| @@ -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::RegisterForNotifications() {
|
| registrar_.Add(this, content::NOTIFICATION_NAV_ENTRY_COMMITTED,
|
| - NotificationService::AllSources());
|
| + content::NotificationService::AllSources());
|
| }
|
|
|
| void ExtensionNavigationObserver::PromptToEnableExtensionIfNecessary(
|
|
|