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

Unified Diff: chrome/common/extensions/manifest_handlers/app_isolation_info.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/app_isolation_info.cc
diff --git a/chrome/common/extensions/manifest_handlers/app_isolation_info.cc b/chrome/common/extensions/manifest_handlers/app_isolation_info.cc
index 212f7c2dea741040709bffeff9fdcaee2607f226..74de0879d496c12d4b9220e4889d5c7f44734df6 100644
--- a/chrome/common/extensions/manifest_handlers/app_isolation_info.cc
+++ b/chrome/common/extensions/manifest_handlers/app_isolation_info.cc
@@ -59,7 +59,7 @@ bool AppIsolationHandler::Parse(Extension* extension, base::string16* error) {
const base::ListValue* isolation_list = NULL;
if (!extension->manifest()->GetList(keys::kIsolation, &isolation_list)) {
- *error = ASCIIToUTF16(manifest_errors::kInvalidIsolation);
+ *error = base::ASCIIToUTF16(manifest_errors::kInvalidIsolation);
return false;
}

Powered by Google App Engine
This is Rietveld 408576698