| Index: chrome/browser/printing/cloud_print/test/cloud_print_proxy_process_browsertest.cc
|
| diff --git a/chrome/browser/printing/cloud_print/test/cloud_print_proxy_process_browsertest.cc b/chrome/browser/printing/cloud_print/test/cloud_print_proxy_process_browsertest.cc
|
| index e5c89874b5436307654671849c4d57952171c200..2d4e196e83e63cf4d17cddae82bfa32b3aa8118d 100644
|
| --- a/chrome/browser/printing/cloud_print/test/cloud_print_proxy_process_browsertest.cc
|
| +++ b/chrome/browser/printing/cloud_print/test/cloud_print_proxy_process_browsertest.cc
|
| @@ -432,7 +432,9 @@ base::ProcessHandle CloudPrintProxyPolicyStartupTest::Launch(
|
| ipc_file_list.push_back(std::make_pair(
|
| startup_channel_->TakeClientFileDescriptor(),
|
| kPrimaryIPCChannel + base::GlobalDescriptors::kBaseDescriptor));
|
| - base::ProcessHandle handle = SpawnChild(name, ipc_file_list, false);
|
| + base::LaunchOptions options;
|
| + options.fds_to_remap = &ipc_file_list;
|
| + base::ProcessHandle handle = SpawnChildWithOptions(name, options, false);
|
| #else
|
| base::ProcessHandle handle = SpawnChild(name, false);
|
| #endif
|
|
|