| Index: chrome/browser/child_process_launcher.cc
|
| ===================================================================
|
| --- chrome/browser/child_process_launcher.cc (revision 32203)
|
| +++ chrome/browser/child_process_launcher.cc (working copy)
|
| @@ -210,11 +210,12 @@
|
| bool ChildProcessLauncher::DidProcessCrash() {
|
| bool did_crash, child_exited;
|
| base::ProcessHandle handle = context_->process_.handle();
|
| +#if defined(OS_LINUX)
|
| if (context_->zygote_) {
|
| -#if defined(OS_LINUX)
|
| did_crash = Singleton<ZygoteHost>()->DidProcessCrash(handle, &child_exited);
|
| + } else
|
| #endif
|
| - } else {
|
| + {
|
| did_crash = base::DidProcessCrash(&child_exited, handle);
|
| }
|
|
|
|
|