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

Unified Diff: chrome/common/extensions/api/storage/storage_schema_manifest_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/storage/storage_schema_manifest_handler.cc
diff --git a/chrome/common/extensions/api/storage/storage_schema_manifest_handler.cc b/chrome/common/extensions/api/storage/storage_schema_manifest_handler.cc
index ca99da13fba31ae80e806db1eccc03a2d4006288..bbb81644a2ce772c665e5262af012fd51ea7e2c7 100644
--- a/chrome/common/extensions/api/storage/storage_schema_manifest_handler.cc
+++ b/chrome/common/extensions/api/storage/storage_schema_manifest_handler.cc
@@ -66,7 +66,7 @@ bool StorageSchemaManifestHandler::Parse(Extension* extension,
base::string16* error) {
std::string path;
if (!extension->manifest()->GetString(kStorageManagedSchema, &path)) {
- *error = ASCIIToUTF16(
+ *error = base::ASCIIToUTF16(
base::StringPrintf("%s must be a string", kStorageManagedSchema));
return false;
}

Powered by Google App Engine
This is Rietveld 408576698