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

Unified Diff: chrome/browser/chromeos/system/name_value_pairs_parser.cc

Issue 7386002: Rename CommandLine::GetCommandLineString(). (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Merge. Created 9 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
« no previous file with comments | « chrome/browser/chromeos/login/login_utils.cc ('k') | chrome/browser/jumplist_win.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: chrome/browser/chromeos/system/name_value_pairs_parser.cc
diff --git a/chrome/browser/chromeos/system/name_value_pairs_parser.cc b/chrome/browser/chromeos/system/name_value_pairs_parser.cc
index 700ebac46d51bfac30dc1bcfe11b24a86b944d5a..f7a4683c4304856943382bc30ebb52fa1b2137bc 100644
--- a/chrome/browser/chromeos/system/name_value_pairs_parser.cc
+++ b/chrome/browser/chromeos/system/name_value_pairs_parser.cc
@@ -72,7 +72,7 @@ bool NameValuePairsParser::GetSingleValueFromTool(int argc,
// TODO(stevenjb,satorux): Make this non blocking: crosbug.com/5603.
base::ThreadRestrictions::ScopedAllowIO allow_io_for_thread_join;
if (argc < 1 || !base::GetAppOutput(command_line, &output_string)) {
- LOG(WARNING) << "Error excuting: " << command_line.command_line_string();
+ LOG(WARNING) << "Error excuting: " << command_line.GetCommandLineString();
return false;
}
TrimWhitespaceASCII(output_string, TRIM_ALL, &output_string);
@@ -90,12 +90,12 @@ bool NameValuePairsParser::ParseNameValuePairsFromTool(
// TODO(stevenjb,satorux): Make this non blocking: crosbug.com/5603.
base::ThreadRestrictions::ScopedAllowIO allow_io_for_thread_join;
if (argc < 1 || !base::GetAppOutput(command_line, &output_string)) {
- LOG(WARNING) << "Error excuting: " << command_line.command_line_string();
+ LOG(WARNING) << "Error excuting: " << command_line.GetCommandLineString();
return false;
}
if (!ParseNameValuePairs(output_string, eq, delim)) {
LOG(WARNING) << "Error parsing values while excuting: "
- << command_line.command_line_string();
+ << command_line.GetCommandLineString();
return false;
}
return true;
« no previous file with comments | « chrome/browser/chromeos/login/login_utils.cc ('k') | chrome/browser/jumplist_win.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698