| 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();
|
| }
|
|
|