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

Unified Diff: chrome_frame/cfproxy_support.cc

Issue 7386002: Rename CommandLine::GetCommandLineString(). (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Merge, use writable string copies, restore TODO comment and empty string compare. 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
Index: chrome_frame/cfproxy_support.cc
diff --git a/chrome_frame/cfproxy_support.cc b/chrome_frame/cfproxy_support.cc
index 7fd61b7ce82f142e76a85c9778f2ee7d5ad4276e..4e7d807089cbfc25de9bda9c15aab443fc316cc2 100644
--- a/chrome_frame/cfproxy_support.cc
+++ b/chrome_frame/cfproxy_support.cc
@@ -300,7 +300,7 @@ std::wstring BuildCmdLine(const std::string& channel_id,
command_line->AppendSwitchPath(switches::kUserDataDir, profile_path);
- std::wstring command_line_string(command_line->command_line_string());
+ std::wstring command_line_string(command_line->GetCommandLineString());
if (!extra_args.empty()) {
command_line_string.append(L" ");
command_line_string.append(extra_args);

Powered by Google App Engine
This is Rietveld 408576698