| Index: chrome/browser/speech/tts_win.cc
|
| diff --git a/chrome/browser/speech/tts_win.cc b/chrome/browser/speech/tts_win.cc
|
| index 1886bd0d660385388a9e39403a457b1dea774136..ac258205889449b9658ac9df78d4ee35313bd9d5 100644
|
| --- a/chrome/browser/speech/tts_win.cc
|
| +++ b/chrome/browser/speech/tts_win.cc
|
| @@ -57,7 +57,7 @@ class TtsPlatformImplWin : public TtsPlatformImpl {
|
| int char_position_;
|
| bool paused_;
|
|
|
| - friend struct DefaultSingletonTraits<TtsPlatformImplWin>;
|
| + friend struct base::DefaultSingletonTraits<TtsPlatformImplWin>;
|
|
|
| DISALLOW_COPY_AND_ASSIGN(TtsPlatformImplWin);
|
| };
|
| @@ -248,8 +248,8 @@ TtsPlatformImplWin::TtsPlatformImplWin()
|
|
|
| // static
|
| TtsPlatformImplWin* TtsPlatformImplWin::GetInstance() {
|
| - return Singleton<TtsPlatformImplWin,
|
| - LeakySingletonTraits<TtsPlatformImplWin> >::get();
|
| + return base::Singleton<TtsPlatformImplWin,
|
| + base::LeakySingletonTraits<TtsPlatformImplWin>>::get();
|
| }
|
|
|
| // static
|
|
|