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

Unified Diff: chrome/common/extensions/api/extension_action/browser_action_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/extension_action/browser_action_handler.cc
diff --git a/chrome/common/extensions/api/extension_action/browser_action_handler.cc b/chrome/common/extensions/api/extension_action/browser_action_handler.cc
index 1cf6b8b0e657550ecc94105f8d4a5a1cc4615921..9b449b2883983c79e6af976bde3e6af8a3566fcb 100644
--- a/chrome/common/extensions/api/extension_action/browser_action_handler.cc
+++ b/chrome/common/extensions/api/extension_action/browser_action_handler.cc
@@ -28,7 +28,7 @@ bool BrowserActionHandler::Parse(Extension* extension,
const base::DictionaryValue* dict = NULL;
if (!extension->manifest()->GetDictionary(
manifest_keys::kBrowserAction, &dict)) {
- *error = ASCIIToUTF16(manifest_errors::kInvalidBrowserAction);
+ *error = base::ASCIIToUTF16(manifest_errors::kInvalidBrowserAction);
return false;
}

Powered by Google App Engine
This is Rietveld 408576698