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" |
11 #include "base/feature_list.h" | 11 #include "base/feature_list.h" |
12 #include "base/files/file_path.h" | 12 #include "base/files/file_path.h" |
13 #include "base/lazy_instance.h" | 13 #include "base/lazy_instance.h" |
14 #include "base/logging.h" | 14 #include "base/logging.h" |
15 #include "base/macros.h" | 15 #include "base/macros.h" |
16 #include "base/metrics/field_trial.h" | 16 #include "base/metrics/field_trial.h" |
17 #include "base/metrics/histogram.h" | 17 #include "base/metrics/histogram.h" |
18 #include "base/stl_util.h" | 18 #include "base/stl_util.h" |
19 #include "base/strings/string_util.h" | 19 #include "base/strings/string_util.h" |
20 #include "base/synchronization/waitable_event.h" | 20 #include "base/synchronization/waitable_event.h" |
21 #include "build/build_config.h" | 21 #include "build/build_config.h" |
22 #include "components/tracing/tracing_switches.h" | 22 #include "components/tracing/common/tracing_switches.h" |
23 #include "content/browser/histogram_message_filter.h" | 23 #include "content/browser/histogram_message_filter.h" |
24 #include "content/browser/loader/resource_message_filter.h" | 24 #include "content/browser/loader/resource_message_filter.h" |
25 #include "content/browser/memory/memory_message_filter.h" | 25 #include "content/browser/memory/memory_message_filter.h" |
26 #include "content/browser/profiler_message_filter.h" | 26 #include "content/browser/profiler_message_filter.h" |
27 #include "content/browser/tracing/trace_message_filter.h" | 27 #include "content/browser/tracing/trace_message_filter.h" |
28 #include "content/common/child_process_host_impl.h" | 28 #include "content/common/child_process_host_impl.h" |
29 #include "content/common/child_process_messages.h" | 29 #include "content/common/child_process_messages.h" |
30 #include "content/public/browser/browser_child_process_host_delegate.h" | 30 #include "content/public/browser/browser_child_process_host_delegate.h" |
31 #include "content/public/browser/browser_child_process_observer.h" | 31 #include "content/public/browser/browser_child_process_observer.h" |
32 #include "content/public/browser/browser_thread.h" | 32 #include "content/public/browser/browser_thread.h" |
(...skipping 426 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
459 | 459 |
460 #if defined(OS_WIN) | 460 #if defined(OS_WIN) |
461 | 461 |
462 void BrowserChildProcessHostImpl::OnObjectSignaled(HANDLE object) { | 462 void BrowserChildProcessHostImpl::OnObjectSignaled(HANDLE object) { |
463 OnChildDisconnected(); | 463 OnChildDisconnected(); |
464 } | 464 } |
465 | 465 |
466 #endif | 466 #endif |
467 | 467 |
468 } // namespace content | 468 } // namespace content |
OLD | NEW |