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

Unified Diff: chrome/common/extensions/api/system_indicator/system_indicator_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/system_indicator/system_indicator_handler.cc
diff --git a/chrome/common/extensions/api/system_indicator/system_indicator_handler.cc b/chrome/common/extensions/api/system_indicator/system_indicator_handler.cc
index 28db8cc61881af903279e82ba3e3f128190acbc5..f3fcdf0a473ba08fcb4ae4a4e8352724bee7c783 100644
--- a/chrome/common/extensions/api/system_indicator/system_indicator_handler.cc
+++ b/chrome/common/extensions/api/system_indicator/system_indicator_handler.cc
@@ -26,7 +26,7 @@ bool SystemIndicatorHandler::Parse(Extension* extension,
const base::DictionaryValue* system_indicator_value = NULL;
if (!extension->manifest()->GetDictionary(
manifest_keys::kSystemIndicator, &system_indicator_value)) {
- *error = ASCIIToUTF16(manifest_errors::kInvalidSystemIndicator);
+ *error = base::ASCIIToUTF16(manifest_errors::kInvalidSystemIndicator);
return false;
}

Powered by Google App Engine
This is Rietveld 408576698