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

Unified Diff: chrome/browser/ui/app_list/app_list_service_cocoa_mac.mm

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/app_list/app_list_service_cocoa_mac.mm
diff --git a/chrome/browser/ui/app_list/app_list_service_cocoa_mac.mm b/chrome/browser/ui/app_list/app_list_service_cocoa_mac.mm
index 765f44759cc2296d92ef17bff2f30eee13388494..38b7c6601ed3b2a788e93086f8f215b185643a33 100644
--- a/chrome/browser/ui/app_list/app_list_service_cocoa_mac.mm
+++ b/chrome/browser/ui/app_list/app_list_service_cocoa_mac.mm
@@ -15,8 +15,9 @@ AppListServiceCocoaMac::~AppListServiceCocoaMac() {
// static
AppListServiceCocoaMac* AppListServiceCocoaMac::GetInstance() {
- return Singleton<AppListServiceCocoaMac,
- LeakySingletonTraits<AppListServiceCocoaMac>>::get();
+ return base::Singleton<
+ AppListServiceCocoaMac,
+ base::LeakySingletonTraits<AppListServiceCocoaMac>>::get();
}
void AppListServiceCocoaMac::ShowForProfile(Profile* requested_profile) {
« no previous file with comments | « chrome/browser/ui/app_list/app_list_service_cocoa_mac.h ('k') | chrome/browser/ui/app_list/app_list_service_disabled.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698