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

Unified Diff: chrome/browser/profiles/profile_manager.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/profiles/profile_manager.cc
diff --git a/chrome/browser/profiles/profile_manager.cc b/chrome/browser/profiles/profile_manager.cc
index 99a7017ea2935a442bd677766ab5454c3f67f601..af82b91d099118b7ebee489a30357e7d602f0dc8 100644
--- a/chrome/browser/profiles/profile_manager.cc
+++ b/chrome/browser/profiles/profile_manager.cc
@@ -248,7 +248,7 @@ ProfileManager::ProfileManager(const FilePath& user_data_dir)
content::NotificationService::AllSources());
registrar_.Add(
this,
- content::NOTIFICATION_CLOSE_ALL_BROWSERS_REQUEST,
+ chrome::NOTIFICATION_CLOSE_ALL_BROWSERS_REQUEST,
content::NotificationService::AllSources());
registrar_.Add(
this,
@@ -540,7 +540,7 @@ void ProfileManager::Observe(
#endif
bool save_active_profiles = false;
switch (type) {
- case content::NOTIFICATION_CLOSE_ALL_BROWSERS_REQUEST: {
+ case chrome::NOTIFICATION_CLOSE_ALL_BROWSERS_REQUEST: {
// Ignore any browsers closing from now on.
closing_all_browsers_ = true;
break;

Powered by Google App Engine
This is Rietveld 408576698