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

Unified Diff: chrome/common/extensions/web_accessible_resources_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/web_accessible_resources_handler.cc
diff --git a/chrome/common/extensions/web_accessible_resources_handler.cc b/chrome/common/extensions/web_accessible_resources_handler.cc
index fdd6e0e2e1782e2404e06b0f612a28610e0d8ab1..bda7eca78ce8c9b325badff690df78b7b72b9ff3 100644
--- a/chrome/common/extensions/web_accessible_resources_handler.cc
+++ b/chrome/common/extensions/web_accessible_resources_handler.cc
@@ -67,7 +67,7 @@ bool WebAccessibleResourcesHandler::Parse(Extension* extension,
const base::ListValue* list_value = NULL;
if (!extension->manifest()->GetList(keys::kWebAccessibleResources,
&list_value)) {
- *error = ASCIIToUTF16(errors::kInvalidWebAccessibleResourcesList);
+ *error = base::ASCIIToUTF16(errors::kInvalidWebAccessibleResourcesList);
return false;
}
for (size_t i = 0; i < list_value->GetSize(); ++i) {
« no previous file with comments | « chrome/common/extensions/permissions/usb_device_permission_unittest.cc ('k') | chrome/common/extensions/webview_handler.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698