Index: base/process/launch.h |
diff --git a/base/process/launch.h b/base/process/launch.h |
index 06abb297965f4a43822de21f22b25415e8518262..0450ddf021e0faa7936bf7118951d050e185251b 100644 |
--- a/base/process/launch.h |
+++ b/base/process/launch.h |
@@ -22,7 +22,6 @@ |
#include "base/posix/file_descriptor_shuffle.h" |
#elif defined(OS_WIN) |
#include <windows.h> |
-#include "base/win/scoped_handle.h" |
#endif |
namespace base { |
@@ -174,9 +173,8 @@ BASE_EXPORT bool LaunchProcess(const CommandLine& cmdline, |
// |
// Example (including literal quotes) |
// cmdline = "c:\windows\explorer.exe" -foo "c:\bar\" |
-BASE_EXPORT bool LaunchProcess(const string16& cmdline, |
- const LaunchOptions& options, |
- win::ScopedHandle* process_handle); |
+BASE_EXPORT Process LaunchProcess(const string16& cmdline, |
+ const LaunchOptions& options); |
// Launches a process with elevated privileges. This does not behave exactly |
// like LaunchProcess as it uses ShellExecuteEx instead of CreateProcess to |