| Index: net/disk_cache/stress_cache.cc
 | 
| diff --git a/net/disk_cache/stress_cache.cc b/net/disk_cache/stress_cache.cc
 | 
| index f9c8b62c43ae011cccd7aa9c1e0d0562c759a6ee..0cd8f4342d27d10f7a34061bcc7d55e299b7604d 100644
 | 
| --- a/net/disk_cache/stress_cache.cc
 | 
| +++ b/net/disk_cache/stress_cache.cc
 | 
| @@ -59,9 +59,7 @@ int RunSlave(int iteration) {
 | 
|    cmdline.AppendArg(base::IntToString(iteration));
 | 
|  
 | 
|    base::ProcessHandle handle;
 | 
| -  base::LaunchOptions options;
 | 
| -  options.process_handle = &handle;
 | 
| -  if (!base::LaunchProcess(cmdline, options)) {
 | 
| +  if (!base::LaunchProcess(cmdline, base::LaunchOptions(), &handle)) {
 | 
|      printf("Unable to run test\n");
 | 
|      return kError;
 | 
|    }
 | 
| 
 |