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

Unified Diff: chrome/common/extensions/api/speech/tts_engine_manifest_handler.cc

Issue 105473003: Add explicit base namespace to string16 users. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 7 years 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/common/extensions/api/speech/tts_engine_manifest_handler.cc
diff --git a/chrome/common/extensions/api/speech/tts_engine_manifest_handler.cc b/chrome/common/extensions/api/speech/tts_engine_manifest_handler.cc
index e18c594496acca0debc09248641d16abede3450a..0dd93fba0dadf9a7e00a4160ce1251652042bc52 100644
--- a/chrome/common/extensions/api/speech/tts_engine_manifest_handler.cc
+++ b/chrome/common/extensions/api/speech/tts_engine_manifest_handler.cc
@@ -47,7 +47,8 @@ TtsEngineManifestHandler::TtsEngineManifestHandler() {
TtsEngineManifestHandler::~TtsEngineManifestHandler() {
}
-bool TtsEngineManifestHandler::Parse(Extension* extension, string16* error) {
+bool TtsEngineManifestHandler::Parse(Extension* extension,
+ base::string16* error) {
scoped_ptr<TtsVoices> info(new TtsVoices);
const base::DictionaryValue* tts_dict = NULL;
if (!extension->manifest()->GetDictionary(keys::kTtsEngine, &tts_dict)) {

Powered by Google App Engine
This is Rietveld 408576698