Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(1118)

Side by Side Diff: content/browser/renderer_host/render_process_host_impl.cc

Issue 2460823002: Decouple Power Monitor from //content. (Closed)
Patch Set: code rebase Created 4 years, 1 month ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
« no previous file with comments | « content/browser/power_monitor_message_broadcaster_unittest.cc ('k') | content/child/BUILD.gn » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 // Copyright 2012 The Chromium Authors. All rights reserved. 1 // Copyright 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 // Represents the browser side of the browser <--> renderer communication 5 // Represents the browser side of the browser <--> renderer communication
6 // channel. There will be one RenderProcessHost per renderer process. 6 // channel. There will be one RenderProcessHost per renderer process.
7 7
8 #include "content/browser/renderer_host/render_process_host_impl.h" 8 #include "content/browser/renderer_host/render_process_host_impl.h"
9 9
10 #include <algorithm> 10 #include <algorithm>
(...skipping 73 matching lines...) Expand 10 before | Expand all | Expand 10 after
84 #include "content/browser/media/midi_host.h" 84 #include "content/browser/media/midi_host.h"
85 #include "content/browser/memory/memory_coordinator.h" 85 #include "content/browser/memory/memory_coordinator.h"
86 #include "content/browser/memory/memory_message_filter.h" 86 #include "content/browser/memory/memory_message_filter.h"
87 #include "content/browser/message_port_message_filter.h" 87 #include "content/browser/message_port_message_filter.h"
88 #include "content/browser/mime_registry_impl.h" 88 #include "content/browser/mime_registry_impl.h"
89 #include "content/browser/notifications/notification_message_filter.h" 89 #include "content/browser/notifications/notification_message_filter.h"
90 #include "content/browser/notifications/platform_notification_context_impl.h" 90 #include "content/browser/notifications/platform_notification_context_impl.h"
91 #include "content/browser/payments/payment_app_manager.h" 91 #include "content/browser/payments/payment_app_manager.h"
92 #include "content/browser/permissions/permission_service_context.h" 92 #include "content/browser/permissions/permission_service_context.h"
93 #include "content/browser/permissions/permission_service_impl.h" 93 #include "content/browser/permissions/permission_service_impl.h"
94 #include "content/browser/power_monitor_message_broadcaster.h"
95 #include "content/browser/profiler_message_filter.h" 94 #include "content/browser/profiler_message_filter.h"
96 #include "content/browser/push_messaging/push_messaging_message_filter.h" 95 #include "content/browser/push_messaging/push_messaging_message_filter.h"
97 #include "content/browser/quota_dispatcher_host.h" 96 #include "content/browser/quota_dispatcher_host.h"
98 #include "content/browser/renderer_host/clipboard_message_filter.h" 97 #include "content/browser/renderer_host/clipboard_message_filter.h"
99 #include "content/browser/renderer_host/database_message_filter.h" 98 #include "content/browser/renderer_host/database_message_filter.h"
100 #include "content/browser/renderer_host/file_utilities_message_filter.h" 99 #include "content/browser/renderer_host/file_utilities_message_filter.h"
101 #include "content/browser/renderer_host/gamepad_browser_message_filter.h" 100 #include "content/browser/renderer_host/gamepad_browser_message_filter.h"
102 #include "content/browser/renderer_host/media/audio_input_renderer_host.h" 101 #include "content/browser/renderer_host/media/audio_input_renderer_host.h"
103 #include "content/browser/renderer_host/media/audio_renderer_host.h" 102 #include "content/browser/renderer_host/media/audio_renderer_host.h"
104 #include "content/browser/renderer_host/media/media_stream_dispatcher_host.h" 103 #include "content/browser/renderer_host/media/media_stream_dispatcher_host.h"
(...skipping 51 matching lines...) Expand 10 before | Expand all | Expand 10 after
156 #include "content/public/common/content_features.h" 155 #include "content/public/common/content_features.h"
157 #include "content/public/common/content_switches.h" 156 #include "content/public/common/content_switches.h"
158 #include "content/public/common/mojo_channel_switches.h" 157 #include "content/public/common/mojo_channel_switches.h"
159 #include "content/public/common/process_type.h" 158 #include "content/public/common/process_type.h"
160 #include "content/public/common/resource_type.h" 159 #include "content/public/common/resource_type.h"
161 #include "content/public/common/result_codes.h" 160 #include "content/public/common/result_codes.h"
162 #include "content/public/common/sandboxed_process_launcher_delegate.h" 161 #include "content/public/common/sandboxed_process_launcher_delegate.h"
163 #include "content/public/common/service_names.h" 162 #include "content/public/common/service_names.h"
164 #include "content/public/common/url_constants.h" 163 #include "content/public/common/url_constants.h"
165 #include "device/battery/battery_monitor_impl.h" 164 #include "device/battery/battery_monitor_impl.h"
165 #include "device/power_monitor/power_monitor_message_broadcaster.h"
166 #include "device/time_zone_monitor/time_zone_monitor.h" 166 #include "device/time_zone_monitor/time_zone_monitor.h"
167 #include "gpu/GLES2/gl2extchromium.h" 167 #include "gpu/GLES2/gl2extchromium.h"
168 #include "gpu/command_buffer/client/gpu_switches.h" 168 #include "gpu/command_buffer/client/gpu_switches.h"
169 #include "gpu/command_buffer/common/gles2_cmd_utils.h" 169 #include "gpu/command_buffer/common/gles2_cmd_utils.h"
170 #include "gpu/command_buffer/service/gpu_switches.h" 170 #include "gpu/command_buffer/service/gpu_switches.h"
171 #include "ipc/ipc.mojom.h" 171 #include "ipc/ipc.mojom.h"
172 #include "ipc/ipc_channel.h" 172 #include "ipc/ipc_channel.h"
173 #include "ipc/ipc_channel_mojo.h" 173 #include "ipc/ipc_channel_mojo.h"
174 #include "ipc/ipc_logging.h" 174 #include "ipc/ipc_logging.h"
175 #include "media/base/media_switches.h" 175 #include "media/base/media_switches.h"
(...skipping 1062 matching lines...) Expand 10 before | Expand all | Expand 10 after
1238 // BrowserMainLoop, which owns TimeZoneMonitor, is alive for the lifetime of 1238 // BrowserMainLoop, which owns TimeZoneMonitor, is alive for the lifetime of
1239 // Mojo communication (see BrowserMainLoop::ShutdownThreadsAndCleanUp(), 1239 // Mojo communication (see BrowserMainLoop::ShutdownThreadsAndCleanUp(),
1240 // which shuts down Mojo). Hence, passing that TimeZoneMonitor instance as 1240 // which shuts down Mojo). Hence, passing that TimeZoneMonitor instance as
1241 // a raw pointer here is safe. 1241 // a raw pointer here is safe.
1242 AddUIThreadInterface( 1242 AddUIThreadInterface(
1243 registry.get(), 1243 registry.get(),
1244 base::Bind(&device::TimeZoneMonitor::Bind, 1244 base::Bind(&device::TimeZoneMonitor::Bind,
1245 base::Unretained( 1245 base::Unretained(
1246 BrowserMainLoop::GetInstance()->time_zone_monitor()))); 1246 BrowserMainLoop::GetInstance()->time_zone_monitor())));
1247 1247
1248 AddUIThreadInterface(registry.get(), 1248 AddUIThreadInterface(
1249 base::Bind(&PowerMonitorMessageBroadcaster::Create)); 1249 registry.get(),
1250 base::Bind(&device::PowerMonitorMessageBroadcaster::Create));
1250 1251
1251 scoped_refptr<base::SingleThreadTaskRunner> file_task_runner = 1252 scoped_refptr<base::SingleThreadTaskRunner> file_task_runner =
1252 BrowserThread::GetTaskRunnerForThread(BrowserThread::FILE); 1253 BrowserThread::GetTaskRunnerForThread(BrowserThread::FILE);
1253 registry->AddInterface(base::Bind(&MimeRegistryImpl::Create), 1254 registry->AddInterface(base::Bind(&MimeRegistryImpl::Create),
1254 file_task_runner); 1255 file_task_runner);
1255 #if defined(USE_MINIKIN_HYPHENATION) 1256 #if defined(USE_MINIKIN_HYPHENATION)
1256 registry->AddInterface(base::Bind(&hyphenation::HyphenationImpl::Create), 1257 registry->AddInterface(base::Bind(&hyphenation::HyphenationImpl::Create),
1257 file_task_runner); 1258 file_task_runner);
1258 #endif 1259 #endif
1259 1260
(...skipping 1717 matching lines...) Expand 10 before | Expand all | Expand 10 after
2977 LOG(ERROR) << "Terminating render process for bad Mojo message: " << error; 2978 LOG(ERROR) << "Terminating render process for bad Mojo message: " << error;
2978 2979
2979 // The ReceivedBadMessage call below will trigger a DumpWithoutCrashing. Alias 2980 // The ReceivedBadMessage call below will trigger a DumpWithoutCrashing. Alias
2980 // enough information here so that we can determine what the bad message was. 2981 // enough information here so that we can determine what the bad message was.
2981 base::debug::Alias(&error); 2982 base::debug::Alias(&error);
2982 bad_message::ReceivedBadMessage(render_process_id, 2983 bad_message::ReceivedBadMessage(render_process_id,
2983 bad_message::RPH_MOJO_PROCESS_ERROR); 2984 bad_message::RPH_MOJO_PROCESS_ERROR);
2984 } 2985 }
2985 2986
2986 } // namespace content 2987 } // namespace content
OLDNEW
« no previous file with comments | « content/browser/power_monitor_message_broadcaster_unittest.cc ('k') | content/child/BUILD.gn » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698