| Index: chrome/test/automation/proxy_launcher.cc
|
| diff --git a/chrome/test/automation/proxy_launcher.cc b/chrome/test/automation/proxy_launcher.cc
|
| index ad75064ec2bd53b673915873ffa828b29be78aad..052e510def9f7cf54a6e3272dc4551639902fbda 100644
|
| --- a/chrome/test/automation/proxy_launcher.cc
|
| +++ b/chrome/test/automation/proxy_launcher.cc
|
| @@ -442,7 +442,6 @@ bool ProxyLauncher::LaunchBrowserHelper(const LaunchState& state, bool wait,
|
|
|
| base::LaunchOptions options;
|
| options.wait = wait;
|
| - options.process_handle = process;
|
|
|
| #if defined(OS_WIN)
|
| options.start_hidden = !state.show_window;
|
| @@ -464,7 +463,7 @@ bool ProxyLauncher::LaunchBrowserHelper(const LaunchState& state, bool wait,
|
| options.fds_to_remap = &fds;
|
| #endif
|
|
|
| - return base::LaunchProcess(command_line, options);
|
| + return base::LaunchProcess(command_line, options, process);
|
| }
|
|
|
| AutomationProxy* ProxyLauncher::automation() const {
|
|
|