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

Unified Diff: chrome/common/extensions/api/system_indicator/system_indicator_handler.cc

Issue 105473003: Add explicit base namespace to string16 users. (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 d13b94dd51cbd4cf07b65fe7fc14e9d0532779c1..28db8cc61881af903279e82ba3e3f128190acbc5 100644
--- a/chrome/common/extensions/api/system_indicator/system_indicator_handler.cc
+++ b/chrome/common/extensions/api/system_indicator/system_indicator_handler.cc
@@ -21,7 +21,8 @@ SystemIndicatorHandler::SystemIndicatorHandler() {
SystemIndicatorHandler::~SystemIndicatorHandler() {
}
-bool SystemIndicatorHandler::Parse(Extension* extension, string16* error) {
+bool SystemIndicatorHandler::Parse(Extension* extension,
+ base::string16* error) {
const base::DictionaryValue* system_indicator_value = NULL;
if (!extension->manifest()->GetDictionary(
manifest_keys::kSystemIndicator, &system_indicator_value)) {

Powered by Google App Engine
This is Rietveld 408576698