| Index: components/browser_watcher/exit_code_watcher_win_unittest.cc
|
| diff --git a/components/browser_watcher/exit_code_watcher_win_unittest.cc b/components/browser_watcher/exit_code_watcher_win_unittest.cc
|
| index 3e1728c1513aeb086ad8a87f4aa668e996718d63..e73953635fa11d52ea62d8236833ce0061a7b5ab 100644
|
| --- a/components/browser_watcher/exit_code_watcher_win_unittest.cc
|
| +++ b/components/browser_watcher/exit_code_watcher_win_unittest.cc
|
| @@ -38,7 +38,7 @@ class ScopedSleeperProcess {
|
|
|
| ~ScopedSleeperProcess() {
|
| if (process_.IsValid()) {
|
| - process_.Terminate(-1);
|
| + process_.Terminate(-1, false);
|
| int exit_code = 0;
|
| EXPECT_TRUE(process_.WaitForExit(&exit_code));
|
| }
|
| @@ -57,7 +57,7 @@ class ScopedSleeperProcess {
|
| void Kill(int exit_code, bool wait) {
|
| ASSERT_TRUE(process_.IsValid());
|
| ASSERT_FALSE(is_killed_);
|
| - process_.Terminate(exit_code);
|
| + process_.Terminate(exit_code, false);
|
| int seen_exit_code = 0;
|
| EXPECT_TRUE(process_.WaitForExit(&seen_exit_code));
|
| EXPECT_EQ(exit_code, seen_exit_code);
|
|
|