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

Unified Diff: chrome/common/extensions/api/commands/commands_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/commands/commands_handler.cc
diff --git a/chrome/common/extensions/api/commands/commands_handler.cc b/chrome/common/extensions/api/commands/commands_handler.cc
index 9232649d623dbaa6ed86a7b05a0569029204dfe1..4874ce2c1183cf4bcf4634d0d5cefbf8fb8030e6 100644
--- a/chrome/common/extensions/api/commands/commands_handler.cc
+++ b/chrome/common/extensions/api/commands/commands_handler.cc
@@ -72,7 +72,7 @@ bool CommandsHandler::Parse(Extension* extension, base::string16* error) {
const base::DictionaryValue* dict = NULL;
if (!extension->manifest()->GetDictionary(keys::kCommands, &dict)) {
- *error = ASCIIToUTF16(manifest_errors::kInvalidCommandsKey);
+ *error = base::ASCIIToUTF16(manifest_errors::kInvalidCommandsKey);
return false;
}
« no previous file with comments | « chrome/common/content_settings_helper_unittest.cc ('k') | chrome/common/extensions/api/extension_action/action_info.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698