| Index: content/common/child_process_host_impl.cc
|
| diff --git a/content/common/child_process_host_impl.cc b/content/common/child_process_host_impl.cc
|
| index 1dccab0838504ffffcf51186cfaf5d23b451b06d..6fa01994a14182149fc320a2c5aa694a48648171 100644
|
| --- a/content/common/child_process_host_impl.cc
|
| +++ b/content/common/child_process_host_impl.cc
|
| @@ -271,9 +271,9 @@ bool ChildProcessHostImpl::OnMessageReceived(const IPC::Message& msg) {
|
|
|
| void ChildProcessHostImpl::OnChannelConnected(int32 peer_pid) {
|
| if (!peer_handle_ &&
|
| - !base::OpenPrivilegedProcessHandle(peer_pid, &peer_handle_) &&
|
| - !(peer_handle_ = delegate_->GetHandle())) {
|
| - NOTREACHED();
|
| + !base::OpenPrivilegedProcessHandle(peer_pid, &peer_handle_)) {
|
| + peer_handle_ = delegate_->GetHandle();
|
| + DCHECK(peer_handle_);
|
| }
|
| opening_channel_ = false;
|
| delegate_->OnChannelConnected(peer_pid);
|
|
|