diff options
author | evan@chromium.org <evan@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2011-07-12 18:09:46 +0000 |
---|---|---|
committer | evan@chromium.org <evan@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2011-07-12 18:09:46 +0000 |
commit | 1e41c3804e42d0a00481821165bf25657a06b9f0 (patch) | |
tree | 7df9fa50eeb9523578b161dcd5b8991e85aa0610 /base/process_util.h | |
parent | 2bdd3a6802f0483b9f1f9bdc9ae82138b03afe63 (diff) | |
download | chromium_src-1e41c3804e42d0a00481821165bf25657a06b9f0.zip chromium_src-1e41c3804e42d0a00481821165bf25657a06b9f0.tar.gz chromium_src-1e41c3804e42d0a00481821165bf25657a06b9f0.tar.bz2 |
Clean up users of a deprecated base::LaunchApp API.
BUG=88990
Review URL: http://codereview.chromium.org/7258005
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@92200 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'base/process_util.h')
-rw-r--r-- | base/process_util.h | 13 |
1 files changed, 0 insertions, 13 deletions
diff --git a/base/process_util.h b/base/process_util.h index d6b9b64..a7b5aa8 100644 --- a/base/process_util.h +++ b/base/process_util.h @@ -358,19 +358,6 @@ inline bool LaunchApp(const std::vector<std::string>& argv, return LaunchProcess(argv, options); } -// TODO(evan): deprecated; change callers to use LaunchProcess, remove. -inline bool LaunchApp(const std::vector<std::string>& argv, - const environment_vector& environ, - const file_handle_mapping_vector& fds_to_remap, - bool wait, ProcessHandle* process_handle) { - LaunchOptions options; - options.environ = &environ; - options.fds_to_remap = &fds_to_remap; - options.wait = wait; - options.process_handle = process_handle; - return LaunchProcess(argv, options); -} - // AlterEnvironment returns a modified environment vector, constructed from the // given environment and the list of changes given in |changes|. Each key in // the environment is matched against the first element of the pairs. In the |