diff options
author | deanm@chromium.org <deanm@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2008-11-21 23:35:04 +0000 |
---|---|---|
committer | deanm@chromium.org <deanm@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2008-11-21 23:35:04 +0000 |
commit | 0db61d5b8ed634579f051f2e0b3e7d856993d4e5 (patch) | |
tree | 8ac423f5cfbafbf38c6c23873bf2771355c7f94a /base/process_util_win.cc | |
parent | f727e41d25258a22143c04192b5d98afafae25d2 (diff) | |
download | chromium_src-0db61d5b8ed634579f051f2e0b3e7d856993d4e5.zip chromium_src-0db61d5b8ed634579f051f2e0b3e7d856993d4e5.tar.gz chromium_src-0db61d5b8ed634579f051f2e0b3e7d856993d4e5.tar.bz2 |
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
Diffstat (limited to 'base/process_util_win.cc')
-rw-r--r-- | base/process_util_win.cc | 2 |
1 files changed, 1 insertions, 1 deletions
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); |