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

Unified Diff: chrome/browser/speech/tts_chromeos.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
« no previous file with comments | « chrome/browser/speech/tts_android.cc ('k') | chrome/browser/speech/tts_controller_impl.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: chrome/browser/speech/tts_chromeos.cc
diff --git a/chrome/browser/speech/tts_chromeos.cc b/chrome/browser/speech/tts_chromeos.cc
index 4f35e9edc501c60118cdfa0934b06f49c8b41e11..a45bb3a24b42ad9e56c08f4a2f11bdd14b1c269d 100644
--- a/chrome/browser/speech/tts_chromeos.cc
+++ b/chrome/browser/speech/tts_chromeos.cc
@@ -48,7 +48,7 @@ class TtsPlatformImplChromeOs : public TtsPlatformImpl {
TtsPlatformImplChromeOs() {}
~TtsPlatformImplChromeOs() override {}
- friend struct DefaultSingletonTraits<TtsPlatformImplChromeOs>;
+ friend struct base::DefaultSingletonTraits<TtsPlatformImplChromeOs>;
DISALLOW_COPY_AND_ASSIGN(TtsPlatformImplChromeOs);
};
@@ -61,5 +61,5 @@ TtsPlatformImpl* TtsPlatformImpl::GetInstance() {
// static
TtsPlatformImplChromeOs*
TtsPlatformImplChromeOs::GetInstance() {
- return Singleton<TtsPlatformImplChromeOs>::get();
+ return base::Singleton<TtsPlatformImplChromeOs>::get();
}
« no previous file with comments | « chrome/browser/speech/tts_android.cc ('k') | chrome/browser/speech/tts_controller_impl.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698