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

Unified Diff: chrome/browser/extensions/extension_tts_api_win.cc

Issue 6825055: Include base/win/scoped_comptr.h instead of base/scoped_comptr_win.h. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: revert bad indentation, rebase Created 9 years, 8 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
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>;
« no previous file with comments | « chrome/browser/autocomplete/autocomplete_edit_view_win.cc ('k') | chrome/browser/first_run/first_run_win.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698