| Index: chrome/browser/extensions/extension_tts_api_win.cc
|
| diff --git a/chrome/browser/extensions/extension_tts_api_win.cc b/chrome/browser/extensions/extension_tts_api_win.cc
|
| index 30e223632a650f4a4a4454982851a7020c5ebfdd..2b7b54c0e658582e2dbfaa9c1c48cd1ebd1024dc 100644
|
| --- a/chrome/browser/extensions/extension_tts_api_win.cc
|
| +++ b/chrome/browser/extensions/extension_tts_api_win.cc
|
| @@ -9,10 +9,10 @@
|
| #include <sapi.h>
|
|
|
| #include "base/memory/singleton.h"
|
| -#include "base/scoped_comptr_win.h"
|
| #include "base/string_number_conversions.h"
|
| #include "base/utf_string_conversions.h"
|
| #include "base/values.h"
|
| +#include "base/win/scoped_comptr.h"
|
|
|
| namespace util = extension_tts_api_util;
|
|
|
| @@ -37,7 +37,7 @@ class ExtensionTtsPlatformImplWin : public ExtensionTtsPlatformImpl {
|
| ExtensionTtsPlatformImplWin();
|
| virtual ~ExtensionTtsPlatformImplWin() {}
|
|
|
| - ScopedComPtr<ISpVoice> speech_synthesizer_;
|
| + base::win::ScopedComPtr<ISpVoice> speech_synthesizer_;
|
| bool paused_;
|
|
|
| friend struct DefaultSingletonTraits<ExtensionTtsPlatformImplWin>;
|
|
|