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

Unified Diff: chrome/common/extensions/command.cc

Issue 1223153003: Move JoinString to the base namespace (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: windows Created 5 years, 5 months 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/command.cc
diff --git a/chrome/common/extensions/command.cc b/chrome/common/extensions/command.cc
index ba42e1c6def0fe420edabde9c7fa94191b75548c..fc4b47bc44e7b6ffcf867230ab5196b6d319fa7f 100644
--- a/chrome/common/extensions/command.cc
+++ b/chrome/common/extensions/command.cc
@@ -272,7 +272,7 @@ std::string NormalizeShortcutSuggestion(const std::string& suggestion,
else if (tokens[i] == values::kKeyMacCtrl)
tokens[i] = values::kKeyCtrl;
}
- return JoinString(tokens, '+');
+ return base::JoinString(tokens, "+");
}
} // namespace
« no previous file with comments | « chrome/common/chrome_content_client.cc ('k') | chrome/common/extensions/permissions/chrome_permission_message_rules.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698