Index: chrome/browser/extensions/extension_cookies_api.cc |
=================================================================== |
--- chrome/browser/extensions/extension_cookies_api.cc (revision 106380) |
+++ chrome/browser/extensions/extension_cookies_api.cc (working copy) |
@@ -19,7 +19,7 @@ |
#include "chrome/common/extensions/extension.h" |
#include "chrome/common/extensions/extension_error_utils.h" |
#include "content/browser/browser_thread.h" |
-#include "content/common/notification_service.h" |
+#include "content/public/browser/notification_service.h" |
#include "net/base/cookie_monster.h" |
#include "net/url_request/url_request_context.h" |
#include "net/url_request/url_request_context_getter.h" |
@@ -35,7 +35,7 @@ |
CHECK(registrar_.IsEmpty()); |
registrar_.Add(this, |
chrome::NOTIFICATION_COOKIE_CHANGED, |
- NotificationService::AllBrowserContextsAndSources()); |
+ content::NotificationService::AllBrowserContextsAndSources()); |
} |
void ExtensionCookiesEventRouter::Observe( |