| Index: content/browser/child_process_launcher.cc
|
| diff --git a/content/browser/child_process_launcher.cc b/content/browser/child_process_launcher.cc
|
| index bee658d187329d570f2a3a6be1830ece92e5677c..a41894206173cccc6f62273ef73ad4a6240b8d0a 100644
|
| --- a/content/browser/child_process_launcher.cc
|
| +++ b/content/browser/child_process_launcher.cc
|
| @@ -415,6 +415,7 @@ base::ProcessHandle ChildProcessLauncher::GetHandle() {
|
| }
|
|
|
| base::TerminationStatus ChildProcessLauncher::GetChildTerminationStatus(
|
| + bool known_dead,
|
| int* exit_code) {
|
| base::ProcessHandle handle = context_->process_.handle();
|
| if (handle == base::kNullProcessHandle) {
|
| @@ -426,7 +427,7 @@ base::TerminationStatus ChildProcessLauncher::GetChildTerminationStatus(
|
| #if defined(OS_POSIX) && !defined(OS_MACOSX) && !defined(OS_ANDROID)
|
| if (context_->zygote_) {
|
| context_->termination_status_ = ZygoteHostImpl::GetInstance()->
|
| - GetTerminationStatus(handle, &context_->exit_code_);
|
| + GetTerminationStatus(handle, known_dead, &context_->exit_code_);
|
| } else
|
| #endif
|
| {
|
|
|