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

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: ToT Created 5 years, 3 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 5cfb237c17190b752f272f26cc0bb1fc8a3f4e92..1cf523f25215bf1186ca841c2e90283fe5708c9c 100644
--- a/chrome/browser/ui/prefs/prefs_tab_helper.cc
+++ b/chrome/browser/ui/prefs/prefs_tab_helper.cc
@@ -414,11 +414,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",
« no previous file with comments | « chrome/browser/ui/libgtk2ui/gtk2_event_loop.cc ('k') | chrome/browser/ui/search/new_tab_page_interceptor_service_factory.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698