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/child/child_thread_impl.h" | 5 #include "content/child/child_thread_impl.h" |
6 | 6 |
7 #include <signal.h> | 7 #include <signal.h> |
8 #include <string> | 8 #include <string> |
9 #include <utility> | 9 #include <utility> |
10 | 10 |
(...skipping 33 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
44 #include "content/child/notifications/notification_dispatcher.h" | 44 #include "content/child/notifications/notification_dispatcher.h" |
45 #include "content/child/power_monitor_broadcast_source.h" | 45 #include "content/child/power_monitor_broadcast_source.h" |
46 #include "content/child/push_messaging/push_dispatcher.h" | 46 #include "content/child/push_messaging/push_dispatcher.h" |
47 #include "content/child/quota_dispatcher.h" | 47 #include "content/child/quota_dispatcher.h" |
48 #include "content/child/quota_message_filter.h" | 48 #include "content/child/quota_message_filter.h" |
49 #include "content/child/resource_dispatcher.h" | 49 #include "content/child/resource_dispatcher.h" |
50 #include "content/child/service_worker/service_worker_message_filter.h" | 50 #include "content/child/service_worker/service_worker_message_filter.h" |
51 #include "content/child/thread_safe_sender.h" | 51 #include "content/child/thread_safe_sender.h" |
52 #include "content/common/child_process_messages.h" | 52 #include "content/common/child_process_messages.h" |
53 #include "content/common/in_process_child_thread_params.h" | 53 #include "content/common/in_process_child_thread_params.h" |
| 54 #include "content/common/mojo/constants.h" |
54 #include "content/public/common/connection_filter.h" | 55 #include "content/public/common/connection_filter.h" |
55 #include "content/public/common/content_switches.h" | 56 #include "content/public/common/content_switches.h" |
56 #include "content/public/common/mojo_channel_switches.h" | 57 #include "content/public/common/mojo_channel_switches.h" |
57 #include "content/public/common/mojo_shell_connection.h" | 58 #include "content/public/common/mojo_shell_connection.h" |
58 #include "content/public/common/service_names.h" | |
59 #include "ipc/attachment_broker.h" | 59 #include "ipc/attachment_broker.h" |
60 #include "ipc/attachment_broker_unprivileged.h" | 60 #include "ipc/attachment_broker_unprivileged.h" |
61 #include "ipc/ipc_channel_mojo.h" | 61 #include "ipc/ipc_channel_mojo.h" |
62 #include "ipc/ipc_logging.h" | 62 #include "ipc/ipc_logging.h" |
63 #include "ipc/ipc_platform_file.h" | 63 #include "ipc/ipc_platform_file.h" |
64 #include "ipc/ipc_switches.h" | 64 #include "ipc/ipc_switches.h" |
65 #include "ipc/ipc_sync_channel.h" | 65 #include "ipc/ipc_sync_channel.h" |
66 #include "ipc/ipc_sync_message_filter.h" | 66 #include "ipc/ipc_sync_message_filter.h" |
67 #include "mojo/edk/embedder/embedder.h" | 67 #include "mojo/edk/embedder/embedder.h" |
68 #include "mojo/edk/embedder/named_platform_channel_pair.h" | 68 #include "mojo/edk/embedder/named_platform_channel_pair.h" |
(...skipping 778 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
847 void ChildThreadImpl::EnsureConnected() { | 847 void ChildThreadImpl::EnsureConnected() { |
848 VLOG(0) << "ChildThreadImpl::EnsureConnected()"; | 848 VLOG(0) << "ChildThreadImpl::EnsureConnected()"; |
849 base::Process::Current().Terminate(0, false); | 849 base::Process::Current().Terminate(0, false); |
850 } | 850 } |
851 | 851 |
852 bool ChildThreadImpl::IsInBrowserProcess() const { | 852 bool ChildThreadImpl::IsInBrowserProcess() const { |
853 return static_cast<bool>(browser_process_io_runner_); | 853 return static_cast<bool>(browser_process_io_runner_); |
854 } | 854 } |
855 | 855 |
856 } // namespace content | 856 } // namespace content |
OLD | NEW |