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

Unified Diff: chrome/browser/ui/tabs/pinned_tab_service.cc

Issue 10779042: Move notifications only used in chrome/ to chrome/. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: fix oops Created 8 years, 5 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/ui/tabs/pinned_tab_service.cc
diff --git a/chrome/browser/ui/tabs/pinned_tab_service.cc b/chrome/browser/ui/tabs/pinned_tab_service.cc
index 683c05c6077703abbac7ab3e576624e6ce17f4be..39de47d6202f8e5f73bd56300ac5b4be92d12a50 100644
--- a/chrome/browser/ui/tabs/pinned_tab_service.cc
+++ b/chrome/browser/ui/tabs/pinned_tab_service.cc
@@ -30,7 +30,7 @@ PinnedTabService::PinnedTabService(Profile* profile)
content::NotificationService::AllBrowserContextsAndSources());
registrar_.Add(this, chrome::NOTIFICATION_BROWSER_CLOSING,
content::NotificationService::AllSources());
- registrar_.Add(this, content::NOTIFICATION_CLOSE_ALL_BROWSERS_REQUEST,
+ registrar_.Add(this, chrome::NOTIFICATION_CLOSE_ALL_BROWSERS_REQUEST,
content::NotificationService::AllSources());
}
@@ -63,7 +63,7 @@ void PinnedTabService::Observe(int type,
break;
}
- case content::NOTIFICATION_CLOSE_ALL_BROWSERS_REQUEST: {
+ case chrome::NOTIFICATION_CLOSE_ALL_BROWSERS_REQUEST: {
if (has_normal_browser_)
GotExit();
break;

Powered by Google App Engine
This is Rietveld 408576698