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

Unified Diff: chrome/common/extensions/api/input_ime/input_components_handler.cc

Issue 93793010: Update uses of UTF conversions in chrome/common to use the base:: namespace. (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/input_ime/input_components_handler.cc
diff --git a/chrome/common/extensions/api/input_ime/input_components_handler.cc b/chrome/common/extensions/api/input_ime/input_components_handler.cc
index fa869cca4a61c039f4ef4acb678160442a0ae449..67a1c95d9374a1ea12016d6fabf22f14814d0cf0 100644
--- a/chrome/common/extensions/api/input_ime/input_components_handler.cc
+++ b/chrome/common/extensions/api/input_ime/input_components_handler.cc
@@ -51,7 +51,7 @@ bool InputComponentsHandler::Parse(Extension* extension,
scoped_ptr<InputComponents> info(new InputComponents);
const base::ListValue* list_value = NULL;
if (!extension->manifest()->GetList(keys::kInputComponents, &list_value)) {
- *error = ASCIIToUTF16(errors::kInvalidInputComponents);
+ *error = base::ASCIIToUTF16(errors::kInvalidInputComponents);
return false;
}
for (size_t i = 0; i < list_value->GetSize(); ++i) {
@@ -69,7 +69,7 @@ bool InputComponentsHandler::Parse(Extension* extension,
bool shortcut_shift = false;
if (!list_value->GetDictionary(i, &module_value)) {
- *error = ASCIIToUTF16(errors::kInvalidInputComponents);
+ *error = base::ASCIIToUTF16(errors::kInvalidInputComponents);
return false;
}

Powered by Google App Engine
This is Rietveld 408576698