| OLD | NEW |
| 1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. |
| 2 // Use of this source code is governed by a BSD-style license that can be | 2 // Use of this source code is governed by a BSD-style license that can be |
| 3 // found in the LICENSE file. | 3 // found in the LICENSE file. |
| 4 | 4 |
| 5 #include "content/browser/browser_child_process_host_impl.h" | 5 #include "content/browser/browser_child_process_host_impl.h" |
| 6 | 6 |
| 7 #include "base/bind.h" | 7 #include "base/bind.h" |
| 8 #include "base/command_line.h" | 8 #include "base/command_line.h" |
| 9 #include "base/file_path.h" | 9 #include "base/file_path.h" |
| 10 #include "base/lazy_instance.h" | 10 #include "base/lazy_instance.h" |
| (...skipping 72 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 83 : data_(type), | 83 : data_(type), |
| 84 delegate_(delegate), | 84 delegate_(delegate), |
| 85 #if !defined(OS_WIN) | 85 #if !defined(OS_WIN) |
| 86 ALLOW_THIS_IN_INITIALIZER_LIST(task_factory_(this)), | 86 ALLOW_THIS_IN_INITIALIZER_LIST(task_factory_(this)), |
| 87 #endif | 87 #endif |
| 88 disconnect_was_alive_(false) { | 88 disconnect_was_alive_(false) { |
| 89 data_.id = ChildProcessHostImpl::GenerateChildProcessUniqueId(); | 89 data_.id = ChildProcessHostImpl::GenerateChildProcessUniqueId(); |
| 90 | 90 |
| 91 child_process_host_.reset(ChildProcessHost::Create(this)); | 91 child_process_host_.reset(ChildProcessHost::Create(this)); |
| 92 child_process_host_->AddFilter(new TraceMessageFilter); | 92 child_process_host_->AddFilter(new TraceMessageFilter); |
| 93 child_process_host_->AddFilter(new ProfilerMessageFilter); | 93 child_process_host_->AddFilter(new content::ProfilerMessageFilter); |
| 94 | 94 |
| 95 g_child_process_list.Get().push_back(this); | 95 g_child_process_list.Get().push_back(this); |
| 96 } | 96 } |
| 97 | 97 |
| 98 BrowserChildProcessHostImpl::~BrowserChildProcessHostImpl() { | 98 BrowserChildProcessHostImpl::~BrowserChildProcessHostImpl() { |
| 99 g_child_process_list.Get().remove(this); | 99 g_child_process_list.Get().remove(this); |
| 100 } | 100 } |
| 101 | 101 |
| 102 // static | 102 // static |
| 103 void BrowserChildProcessHostImpl::TerminateAll() { | 103 void BrowserChildProcessHostImpl::TerminateAll() { |
| (...skipping 216 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 320 | 320 |
| 321 | 321 |
| 322 void BrowserChildProcessHostImpl::OnProcessLaunched() { | 322 void BrowserChildProcessHostImpl::OnProcessLaunched() { |
| 323 if (!child_process_->GetHandle()) { | 323 if (!child_process_->GetHandle()) { |
| 324 delete delegate_; // Will delete us | 324 delete delegate_; // Will delete us |
| 325 return; | 325 return; |
| 326 } | 326 } |
| 327 data_.handle = child_process_->GetHandle(); | 327 data_.handle = child_process_->GetHandle(); |
| 328 delegate_->OnProcessLaunched(); | 328 delegate_->OnProcessLaunched(); |
| 329 } | 329 } |
| OLD | NEW |