| Index: base/process_util_win.cc
|
| diff --git a/base/process_util_win.cc b/base/process_util_win.cc
|
| index 454b691ac8cf780d8041b060ecbca4dc4f53e647..55d2959c10813a6297e5b9e73418eb85e6d42389 100644
|
| --- a/base/process_util_win.cc
|
| +++ b/base/process_util_win.cc
|
| @@ -539,7 +539,8 @@ TerminationStatus GetTerminationStatus(ProcessHandle handle, int* exit_code) {
|
| }
|
|
|
| bool WaitForExitCode(ProcessHandle handle, int* exit_code) {
|
| - bool success = WaitForExitCodeWithTimeout(handle, exit_code, INFINITE);
|
| + bool success = WaitForExitCodeWithTimeout(
|
| + handle, exit_code, base::TimeDelta::FromMilliseconds(INFINITE));
|
| CloseProcessHandle(handle);
|
| return success;
|
| }
|
|
|