Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(438)

Unified Diff: chrome/browser/extensions/api/web_navigation/web_navigation_api.cc

Issue 10079023: Move notifications used only in chrome/ out of content/. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: six! Created 8 years, 8 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
Index: chrome/browser/extensions/api/web_navigation/web_navigation_api.cc
diff --git a/chrome/browser/extensions/api/web_navigation/web_navigation_api.cc b/chrome/browser/extensions/api/web_navigation/web_navigation_api.cc
index da4f9455b32405942f8ff04ffbf92c19f551b901..d87fc60f1604725fda4fd24c12083bcefcb2da31 100644
--- a/chrome/browser/extensions/api/web_navigation/web_navigation_api.cc
+++ b/chrome/browser/extensions/api/web_navigation/web_navigation_api.cc
@@ -404,7 +404,7 @@ void WebNavigationEventRouter::Init() {
chrome::NOTIFICATION_RETARGETING,
content::NotificationService::AllSources());
registrar_.Add(this,
- content::NOTIFICATION_TAB_ADDED,
+ chrome::NOTIFICATION_TAB_ADDED,
content::NotificationService::AllSources());
registrar_.Add(this,
content::NOTIFICATION_WEB_CONTENTS_DESTROYED,
@@ -426,7 +426,7 @@ void WebNavigationEventRouter::Observe(
break;
}
- case content::NOTIFICATION_TAB_ADDED:
+ case chrome::NOTIFICATION_TAB_ADDED:
TabAdded(content::Details<WebContents>(details).ptr());
break;

Powered by Google App Engine
This is Rietveld 408576698