From ee051dc69830f10a03820d288ac5362b9f745c30 Mon Sep 17 00:00:00 2001 From: "evan@chromium.org" Date: Tue, 19 Jul 2011 01:55:12 +0000 Subject: Remove LaunchAppWithHandleInheritance(). It is now implemented as an option to LaunchProcess. BUG=88990 Review URL: http://codereview.chromium.org/7395037 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@92948 0039d316-1c4b-4281-b951-d872f2087c98 --- base/process_util.h | 11 ----------- 1 file changed, 11 deletions(-) (limited to 'base/process_util.h') diff --git a/base/process_util.h b/base/process_util.h index 9201b45..2a3e82c 100644 --- a/base/process_util.h +++ b/base/process_util.h @@ -296,17 +296,6 @@ BASE_API bool LaunchProcess(const string16& cmdline, ProcessHandle* process_handle); // TODO(evan): deprecated; change callers to use LaunchProcess, remove. -inline bool LaunchAppWithHandleInheritance(const std::wstring& cmdline, - bool wait, bool start_hidden, - ProcessHandle* process_handle) { - LaunchOptions options; - options.wait = wait; - options.start_hidden = start_hidden; - options.inherit_handles = true; - return LaunchProcess(cmdline, options, process_handle); -} - -// TODO(evan): deprecated; change callers to use LaunchProcess, remove. inline bool LaunchAppAsUser(UserTokenHandle token, const std::wstring& cmdline, bool start_hidden, -- cgit v1.1