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

Unified Diff: chromecast/base/process_utils.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: chromecast/base/process_utils.cc
diff --git a/chromecast/base/process_utils.cc b/chromecast/base/process_utils.cc
index 523fb1c697f0781667e17b51d450223a2833b4c5..9e379a05f52c67c96e027230c715c908bb220ad1 100644
--- a/chromecast/base/process_utils.cc
+++ b/chromecast/base/process_utils.cc
@@ -17,7 +17,7 @@ bool GetAppOutput(const std::vector<std::string>& argv, std::string* output) {
DCHECK(output);
// Join the args into one string, creating the command.
- std::string command = JoinString(argv, ' ');
+ std::string command = base::JoinString(argv, " ");
// Open the process.
FILE* fp = popen(command.c_str(), "r");
« no previous file with comments | « chromecast/base/metrics/cast_metrics_helper.cc ('k') | chromeos/network/network_change_notifier_chromeos.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698