diff options
Diffstat (limited to 'chrome/common/mac')
-rw-r--r-- | chrome/common/mac/launchd.h | 2 | ||||
-rw-r--r-- | chrome/common/mac/launchd.mm | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/chrome/common/mac/launchd.h b/chrome/common/mac/launchd.h index c43341c..6e86093 100644 --- a/chrome/common/mac/launchd.h +++ b/chrome/common/mac/launchd.h @@ -88,7 +88,7 @@ class Launchd { private: // TODO(dmaclach): remove this once http://crbug.com/76925 is fixed. // Scaffolding for doing unittests with our singleton. - friend struct DefaultSingletonTraits<Launchd>; + friend struct base::DefaultSingletonTraits<Launchd>; static Launchd* g_instance_; DISALLOW_COPY_AND_ASSIGN(Launchd); diff --git a/chrome/common/mac/launchd.mm b/chrome/common/mac/launchd.mm index de433df..09d3884 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_; } |