Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(89)

Unified Diff: base/process_util.h

Issue 7346017: Clean up users of a deprecated base::LaunchApp API. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 9 years, 5 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « no previous file | base/test/multiprocess_test.h » ('j') | base/test/multiprocess_test.h » ('J')
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: base/process_util.h
diff --git a/base/process_util.h b/base/process_util.h
index d6b9b64c123b8ea74cdf3e354ebba2f6567514d1..22bfd17e1243e97b2c1ec302d4aa2eeece329c83 100644
--- a/base/process_util.h
+++ b/base/process_util.h
@@ -349,17 +349,6 @@ BASE_API bool LaunchProcess(const std::vector<std::string>& argv,
// 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);
-}
-
-// 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) {
« no previous file with comments | « no previous file | base/test/multiprocess_test.h » ('j') | base/test/multiprocess_test.h » ('J')

Powered by Google App Engine
This is Rietveld 408576698