summaryrefslogtreecommitdiffstats
path: root/base/process_util.h
diff options
context:
space:
mode:
authorevan@chromium.org <evan@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2011-07-12 21:44:34 +0000
committerevan@chromium.org <evan@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2011-07-12 21:44:34 +0000
commit5ca767dd92352c8bf5b2dea9313226d2d27c9aae (patch)
treed5a0c2216f3a35eddcee39664ab1883d37dbbbda /base/process_util.h
parentac666bbe3e5678f9a358cb1791e300bb825632e2 (diff)
downloadchromium_src-5ca767dd92352c8bf5b2dea9313226d2d27c9aae.zip
chromium_src-5ca767dd92352c8bf5b2dea9313226d2d27c9aae.tar.gz
chromium_src-5ca767dd92352c8bf5b2dea9313226d2d27c9aae.tar.bz2
Clean up users of a deprecated base::LaunchApp API.
BUG=88990 Review URL: http://codereview.chromium.org/7346017 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@92240 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'base/process_util.h')
-rw-r--r--base/process_util.h11
1 files changed, 0 insertions, 11 deletions
diff --git a/base/process_util.h b/base/process_util.h
index a7b5aa8..6820d42 100644
--- a/base/process_util.h
+++ b/base/process_util.h
@@ -347,17 +347,6 @@ inline bool LaunchAppAsUser(UserTokenHandle token,
BASE_API bool LaunchProcess(const std::vector<std::string>& argv,
const LaunchOptions& options);
-// TODO(evan): deprecated; change callers to use LaunchProcess, remove.
-inline bool LaunchApp(const std::vector<std::string>& argv,
- const file_handle_mapping_vector& fds_to_remap,
- bool wait, ProcessHandle* process_handle) {
- LaunchOptions options;
- 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