diff options
Diffstat (limited to 'chrome_frame/chrome_launcher.cc')
-rw-r--r-- | chrome_frame/chrome_launcher.cc | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/chrome_frame/chrome_launcher.cc b/chrome_frame/chrome_launcher.cc index d7cca9c..1f9f0d1 100644 --- a/chrome_frame/chrome_launcher.cc +++ b/chrome_frame/chrome_launcher.cc @@ -80,8 +80,7 @@ void SanitizeCommandLine(const CommandLine& original, CommandLine* sanitized) { bool SanitizeAndLaunchChrome(const wchar_t* command_line) { std::wstring command_line_with_program(L"dummy.exe "); command_line_with_program += command_line; - CommandLine original(L""); - original.ParseFromString(command_line_with_program); + CommandLine original = CommandLine::FromString(command_line_with_program); CommandLine sanitized(GetChromeExecutablePath()); SanitizeCommandLine(original, &sanitized); |