0

Make the implementation of LaunchApp have the correct prototype to match the header file, we were missing a const.

Review URL: http://codereview.chromium.org/11809

git-svn-id: svn://svn.chromium.org/chrome/trunk/src@5864 0039d316-1c4b-4281-b951-d872f2087c98
This commit is contained in:
deanm@chromium.org
2008-11-21 23:35:04 +00:00
parent f727e41d25
commit 0db61d5b8e

@ -142,7 +142,7 @@ bool LaunchApp(const std::wstring& cmdline,
return true;
}
bool LaunchApp(CommandLine& cl,
bool LaunchApp(const CommandLine& cl,
bool wait, bool start_hidden, ProcessHandle* process_handle) {
return LaunchApp(cl.command_line_string(), wait,
start_hidden, process_handle);