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

Unified Diff: chrome/common/mac/launchd.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
« no previous file with comments | « chrome/common/mac/launchd.h ('k') | chrome/renderer/plugins/plugin_uma.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: chrome/common/mac/launchd.mm
diff --git a/chrome/common/mac/launchd.mm b/chrome/common/mac/launchd.mm
index de433df0aa383a2e36f9a4f1f91dc93f1ad73569..09d38844a1b5aa34e27b14762b47c393f968ec0b 100644
--- a/chrome/common/mac/launchd.mm
+++ b/chrome/common/mac/launchd.mm
@@ -73,7 +73,7 @@ Launchd* Launchd::g_instance_ = NULL;
Launchd* Launchd::GetInstance() {
if (!g_instance_) {
- g_instance_ = Singleton<Launchd>::get();
+ g_instance_ = base::Singleton<Launchd>::get();
}
return g_instance_;
}
« no previous file with comments | « chrome/common/mac/launchd.h ('k') | chrome/renderer/plugins/plugin_uma.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698