diff options
Diffstat (limited to 'base/process_util.h')
-rw-r--r-- | base/process_util.h | 12 |
1 files changed, 0 insertions, 12 deletions
diff --git a/base/process_util.h b/base/process_util.h index 4699c9e2..e64d0a7 100644 --- a/base/process_util.h +++ b/base/process_util.h @@ -235,18 +235,6 @@ bool LaunchApp(const std::vector<std::string>& argv, // The returned array is allocated using new[] and must be freed by the caller. char** AlterEnvironment(const environment_vector& changes, const char* const* const env); - -#if defined(OS_MACOSX) -// Similar to the above, but also returns the new process's task_t if -// |task_handle| is not NULL. If |task_handle| is not NULL, the caller is -// responsible for calling |mach_port_deallocate()| on the returned handle. -bool LaunchAppAndGetTask(const std::vector<std::string>& argv, - const environment_vector& environ, - const file_handle_mapping_vector& fds_to_remap, - bool wait, - task_t* task_handle, - ProcessHandle* process_handle); -#endif // defined(OS_MACOSX) #endif // defined(OS_POSIX) // Executes the application specified by cl. This function delegates to one |