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

Unified Diff: chrome/common/extensions/manifest_handlers/icons_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/manifest_handlers/icons_handler.cc
diff --git a/chrome/common/extensions/manifest_handlers/icons_handler.cc b/chrome/common/extensions/manifest_handlers/icons_handler.cc
index 779d59d9f3a592683450ee37ecf6a10d9f0c3c46..797562c6f43b64d1ef7188a76525b20ae93f5ab5 100644
--- a/chrome/common/extensions/manifest_handlers/icons_handler.cc
+++ b/chrome/common/extensions/manifest_handlers/icons_handler.cc
@@ -77,7 +77,7 @@ bool IconsHandler::Parse(Extension* extension, base::string16* error) {
scoped_ptr<IconsInfo> icons_info(new IconsInfo);
const base::DictionaryValue* icons_dict = NULL;
if (!extension->manifest()->GetDictionary(keys::kIcons, &icons_dict)) {
- *error = ASCIIToUTF16(manifest_errors::kInvalidIcons);
+ *error = base::ASCIIToUTF16(manifest_errors::kInvalidIcons);
return false;
}

Powered by Google App Engine
This is Rietveld 408576698