Index: chrome/test/ui/ui_test_suite.cc |
=================================================================== |
--- chrome/test/ui/ui_test_suite.cc (revision 237598) |
+++ chrome/test/ui/ui_test_suite.cc (working copy) |
@@ -70,13 +70,11 @@ |
base::LaunchOptions launch_options; |
launch_options.job_handle = job_handle_.Get(); |
base::FilePath crash_service = exe_dir.Append(L"crash_service.exe"); |
- base::win::ScopedHandle crash_service_handle; |
if (!base::LaunchProcess(crash_service.value(), base::LaunchOptions(), |
- &crash_service_handle)) { |
+ &crash_service_)) { |
LOG(ERROR) << "Couldn't start crash_service.exe, so this ui_tests run " |
<< "won't tell you if any test crashes!"; |
return; |
} |
- crash_service_ = crash_service_handle.Take(); |
} |
#endif |