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

Unified Diff: chrome_frame/chrome_frame_automation.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/chrome_frame_automation.cc
diff --git a/chrome_frame/chrome_frame_automation.cc b/chrome_frame/chrome_frame_automation.cc
index 2f975f1458a2adfda5bf5a742c39734183db50e3..92b34257f9579fbbb19b05bcdf9666ed321c272e 100644
--- a/chrome_frame/chrome_frame_automation.cc
+++ b/chrome_frame/chrome_frame_automation.cc
@@ -291,7 +291,7 @@ void AutomationProxyCacheEntry::CreateProxy(ChromeFrameLaunchParams* params,
if (!params->language().empty())
command_line->AppendSwitchNative(switches::kLang, params->language());
- std::wstring command_line_string(command_line->command_line_string());
+ std::wstring command_line_string(command_line->GetCommandLineString());
// If there are any extra arguments, append them to the command line.
if (!params->extra_arguments().empty()) {
command_line_string += L' ' + params->extra_arguments();

Powered by Google App Engine
This is Rietveld 408576698