| 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/base_switches.h" | 7 #include "base/base_switches.h" |
| 8 #include "base/bind.h" | 8 #include "base/bind.h" |
| 9 #include "base/command_line.h" | 9 #include "base/command_line.h" |
| 10 #include "base/debug/dump_without_crashing.h" | 10 #include "base/debug/dump_without_crashing.h" |
| (...skipping 27 matching lines...) Expand all Loading... |
| 38 #include "content/public/browser/browser_child_process_observer.h" | 38 #include "content/public/browser/browser_child_process_observer.h" |
| 39 #include "content/public/browser/browser_thread.h" | 39 #include "content/public/browser/browser_thread.h" |
| 40 #include "content/public/browser/child_process_data.h" | 40 #include "content/public/browser/child_process_data.h" |
| 41 #include "content/public/browser/content_browser_client.h" | 41 #include "content/public/browser/content_browser_client.h" |
| 42 #include "content/public/common/connection_filter.h" | 42 #include "content/public/common/connection_filter.h" |
| 43 #include "content/public/common/content_features.h" | 43 #include "content/public/common/content_features.h" |
| 44 #include "content/public/common/content_switches.h" | 44 #include "content/public/common/content_switches.h" |
| 45 #include "content/public/common/mojo_channel_switches.h" | 45 #include "content/public/common/mojo_channel_switches.h" |
| 46 #include "content/public/common/process_type.h" | 46 #include "content/public/common/process_type.h" |
| 47 #include "content/public/common/result_codes.h" | 47 #include "content/public/common/result_codes.h" |
| 48 #include "content/public/common/sandboxed_process_launcher_delegate.h" |
| 48 #include "content/public/common/service_manager_connection.h" | 49 #include "content/public/common/service_manager_connection.h" |
| 49 #include "mojo/edk/embedder/embedder.h" | 50 #include "mojo/edk/embedder/embedder.h" |
| 50 #include "services/service_manager/public/cpp/interface_registry.h" | 51 #include "services/service_manager/public/cpp/interface_registry.h" |
| 51 | 52 |
| 52 #if defined(OS_MACOSX) | 53 #if defined(OS_MACOSX) |
| 53 #include "content/browser/mach_broker_mac.h" | 54 #include "content/browser/mach_broker_mac.h" |
| 54 #endif | 55 #endif |
| 55 | 56 |
| 56 namespace content { | 57 namespace content { |
| 57 namespace { | 58 namespace { |
| (...skipping 543 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 601 | 602 |
| 602 #if defined(OS_WIN) | 603 #if defined(OS_WIN) |
| 603 | 604 |
| 604 void BrowserChildProcessHostImpl::OnObjectSignaled(HANDLE object) { | 605 void BrowserChildProcessHostImpl::OnObjectSignaled(HANDLE object) { |
| 605 OnChildDisconnected(); | 606 OnChildDisconnected(); |
| 606 } | 607 } |
| 607 | 608 |
| 608 #endif | 609 #endif |
| 609 | 610 |
| 610 } // namespace content | 611 } // namespace content |
| OLD | NEW |