| 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(type)); |
| 94 | 94 |
| 95 g_child_process_list.Get().push_back(this); | 95 g_child_process_list.Get().push_back(this); |
| 96 content::GetContentClient()->browser()->BrowserChildProcessHostCreated(this); | 96 content::GetContentClient()->browser()->BrowserChildProcessHostCreated(this); |
| 97 } | 97 } |
| 98 | 98 |
| 99 BrowserChildProcessHostImpl::~BrowserChildProcessHostImpl() { | 99 BrowserChildProcessHostImpl::~BrowserChildProcessHostImpl() { |
| 100 g_child_process_list.Get().remove(this); | 100 g_child_process_list.Get().remove(this); |
| 101 } | 101 } |
| 102 | 102 |
| 103 // static | 103 // static |
| (...skipping 217 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 321 | 321 |
| 322 | 322 |
| 323 void BrowserChildProcessHostImpl::OnProcessLaunched() { | 323 void BrowserChildProcessHostImpl::OnProcessLaunched() { |
| 324 if (!child_process_->GetHandle()) { | 324 if (!child_process_->GetHandle()) { |
| 325 delete delegate_; // Will delete us | 325 delete delegate_; // Will delete us |
| 326 return; | 326 return; |
| 327 } | 327 } |
| 328 data_.handle = child_process_->GetHandle(); | 328 data_.handle = child_process_->GetHandle(); |
| 329 delegate_->OnProcessLaunched(); | 329 delegate_->OnProcessLaunched(); |
| 330 } | 330 } |
| OLD | NEW |