diff options
author | evan@chromium.org <evan@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2011-07-19 01:55:12 +0000 |
---|---|---|
committer | evan@chromium.org <evan@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2011-07-19 01:55:12 +0000 |
commit | ee051dc69830f10a03820d288ac5362b9f745c30 (patch) | |
tree | 46e409dbacdd7c8c4224304ad64641280d52bcb7 /base | |
parent | 7f12702bd190324a1abf3ad5b268492a2e7f6a0a (diff) | |
download | chromium_src-ee051dc69830f10a03820d288ac5362b9f745c30.zip chromium_src-ee051dc69830f10a03820d288ac5362b9f745c30.tar.gz chromium_src-ee051dc69830f10a03820d288ac5362b9f745c30.tar.bz2 |
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
Diffstat (limited to 'base')
-rw-r--r-- | base/process_util.h | 11 |
1 files changed, 0 insertions, 11 deletions
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, |