| Index: net/tools/crash_cache/crash_cache.cc
|
| diff --git a/net/tools/crash_cache/crash_cache.cc b/net/tools/crash_cache/crash_cache.cc
|
| index 72628d0315e484af9478e2e52c110073865e39af..7118af21d55b214d30d801708939400066eeff72 100644
|
| --- a/net/tools/crash_cache/crash_cache.cc
|
| +++ b/net/tools/crash_cache/crash_cache.cc
|
| @@ -49,7 +49,9 @@ int RunSlave(RankCrashes action) {
|
| cmdline.AppendArg(base::IntToString(action));
|
|
|
| base::ProcessHandle handle;
|
| - if (!base::LaunchApp(cmdline, false, false, &handle)) {
|
| + base::LaunchOptions options;
|
| + options.process_handle = &handle;
|
| + if (!base::LaunchProcess(cmdline, options)) {
|
| printf("Unable to run test %d\n", action);
|
| return GENERIC;
|
| }
|
|
|