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

Unified Diff: chrome/browser/ui/prefs/prefs_tab_helper.cc

Issue 1308823002: Move Singleton and related structs to namespace base (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Add \n Created 5 years, 4 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/prefs/prefs_tab_helper.cc
diff --git a/chrome/browser/ui/prefs/prefs_tab_helper.cc b/chrome/browser/ui/prefs/prefs_tab_helper.cc
index 2d877a2bf3032179863f5a5a649540be64dca087..8979a0d0324ad618ce3b7c00e4fff5704fd87032 100644
--- a/chrome/browser/ui/prefs/prefs_tab_helper.cc
+++ b/chrome/browser/ui/prefs/prefs_tab_helper.cc
@@ -429,11 +429,11 @@ class PrefWatcherFactory : public BrowserContextKeyedServiceFactory {
}
static PrefWatcherFactory* GetInstance() {
- return Singleton<PrefWatcherFactory>::get();
+ return base::Singleton<PrefWatcherFactory>::get();
}
private:
- friend struct DefaultSingletonTraits<PrefWatcherFactory>;
+ friend struct base::DefaultSingletonTraits<PrefWatcherFactory>;
PrefWatcherFactory() : BrowserContextKeyedServiceFactory(
"PrefWatcher",

Powered by Google App Engine
This is Rietveld 408576698