| Index: base/process/kill_posix.cc
|
| diff --git a/base/process/kill_posix.cc b/base/process/kill_posix.cc
|
| index 3f304ca509b4158bdfa726afeb51871e34c273f9..9e9b5fb0b0709cd5bd07e6a8e9dcd5cc21154345 100644
|
| --- a/base/process/kill_posix.cc
|
| +++ b/base/process/kill_posix.cc
|
| @@ -473,12 +473,12 @@ void EnsureProcessTerminated(Process process) {
|
| PlatformThread::CreateNonJoinable(0, reaper);
|
| }
|
|
|
| -void EnsureProcessGetsReaped(ProcessHandle process) {
|
| +void EnsureProcessGetsReaped(ProcessId pid) {
|
| // If the child is already dead, then there's nothing to do.
|
| - if (IsChildDead(process))
|
| + if (IsChildDead(pid))
|
| return;
|
|
|
| - BackgroundReaper* reaper = new BackgroundReaper(process, 0);
|
| + BackgroundReaper* reaper = new BackgroundReaper(pid, 0);
|
| PlatformThread::CreateNonJoinable(0, reaper);
|
| }
|
|
|
|
|