Chromium Code Reviews| 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 // 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 67 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
| 78 #include "content/browser/renderer_host/file_utilities_message_filter.h" | 78 #include "content/browser/renderer_host/file_utilities_message_filter.h" |
| 79 #include "content/browser/renderer_host/gamepad_browser_message_filter.h" | 79 #include "content/browser/renderer_host/gamepad_browser_message_filter.h" |
| 80 #include "content/browser/renderer_host/gpu_message_filter.h" | 80 #include "content/browser/renderer_host/gpu_message_filter.h" |
| 81 #include "content/browser/renderer_host/media/audio_input_renderer_host.h" | 81 #include "content/browser/renderer_host/media/audio_input_renderer_host.h" |
| 82 #include "content/browser/renderer_host/media/audio_renderer_host.h" | 82 #include "content/browser/renderer_host/media/audio_renderer_host.h" |
| 83 #include "content/browser/renderer_host/media/device_request_message_filter.h" | 83 #include "content/browser/renderer_host/media/device_request_message_filter.h" |
| 84 #include "content/browser/renderer_host/media/media_stream_dispatcher_host.h" | 84 #include "content/browser/renderer_host/media/media_stream_dispatcher_host.h" |
| 85 #include "content/browser/renderer_host/media/peer_connection_tracker_host.h" | 85 #include "content/browser/renderer_host/media/peer_connection_tracker_host.h" |
| 86 #include "content/browser/renderer_host/media/video_capture_host.h" | 86 #include "content/browser/renderer_host/media/video_capture_host.h" |
| 87 #include "content/browser/renderer_host/memory_benchmark_message_filter.h" | 87 #include "content/browser/renderer_host/memory_benchmark_message_filter.h" |
| 88 #if defined(ENABLE_WEBRTC) | |
| 88 #include "content/browser/renderer_host/p2p/socket_dispatcher_host.h" | 89 #include "content/browser/renderer_host/p2p/socket_dispatcher_host.h" |
|
sky
2014/06/19 23:30:28
Move this with other ENABLE_WEBRTC includes below.
Mostyn Bramley-Moore
2014/06/20 07:50:55
Done.
| |
| 90 #endif | |
| 89 #include "content/browser/renderer_host/pepper/pepper_message_filter.h" | 91 #include "content/browser/renderer_host/pepper/pepper_message_filter.h" |
| 90 #include "content/browser/renderer_host/pepper/pepper_renderer_connection.h" | 92 #include "content/browser/renderer_host/pepper/pepper_renderer_connection.h" |
| 91 #include "content/browser/renderer_host/render_message_filter.h" | 93 #include "content/browser/renderer_host/render_message_filter.h" |
| 92 #include "content/browser/renderer_host/render_view_host_delegate.h" | 94 #include "content/browser/renderer_host/render_view_host_delegate.h" |
| 93 #include "content/browser/renderer_host/render_view_host_impl.h" | 95 #include "content/browser/renderer_host/render_view_host_impl.h" |
| 94 #include "content/browser/renderer_host/render_widget_helper.h" | 96 #include "content/browser/renderer_host/render_widget_helper.h" |
| 95 #include "content/browser/renderer_host/render_widget_host_impl.h" | 97 #include "content/browser/renderer_host/render_widget_host_impl.h" |
| 96 #include "content/browser/renderer_host/socket_stream_dispatcher_host.h" | 98 #include "content/browser/renderer_host/socket_stream_dispatcher_host.h" |
| 97 #include "content/browser/renderer_host/text_input_client_message_filter.h" | 99 #include "content/browser/renderer_host/text_input_client_message_filter.h" |
| 98 #include "content/browser/renderer_host/websocket_dispatcher_host.h" | 100 #include "content/browser/renderer_host/websocket_dispatcher_host.h" |
| (...skipping 2259 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
| 2358 void RenderProcessHostImpl::GpuMemoryBufferAllocated( | 2360 void RenderProcessHostImpl::GpuMemoryBufferAllocated( |
| 2359 IPC::Message* reply, | 2361 IPC::Message* reply, |
| 2360 const gfx::GpuMemoryBufferHandle& handle) { | 2362 const gfx::GpuMemoryBufferHandle& handle) { |
| 2361 DCHECK_CURRENTLY_ON(BrowserThread::UI); | 2363 DCHECK_CURRENTLY_ON(BrowserThread::UI); |
| 2362 ChildProcessHostMsg_SyncAllocateGpuMemoryBuffer::WriteReplyParams(reply, | 2364 ChildProcessHostMsg_SyncAllocateGpuMemoryBuffer::WriteReplyParams(reply, |
| 2363 handle); | 2365 handle); |
| 2364 Send(reply); | 2366 Send(reply); |
| 2365 } | 2367 } |
| 2366 | 2368 |
| 2367 } // namespace content | 2369 } // namespace content |
| OLD | NEW |