From 0db61d5b8ed634579f051f2e0b3e7d856993d4e5 Mon Sep 17 00:00:00 2001 From: "deanm@chromium.org" Date: Fri, 21 Nov 2008 23:35:04 +0000 Subject: 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 --- base/process_util_win.cc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'base') diff --git a/base/process_util_win.cc b/base/process_util_win.cc index d163e30..1203629 100644 --- a/base/process_util_win.cc +++ b/base/process_util_win.cc @@ -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); -- cgit v1.1