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 68 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
79 #include "content/browser/renderer_host/file_utilities_message_filter.h" | 79 #include "content/browser/renderer_host/file_utilities_message_filter.h" |
80 #include "content/browser/renderer_host/gamepad_browser_message_filter.h" | 80 #include "content/browser/renderer_host/gamepad_browser_message_filter.h" |
81 #include "content/browser/renderer_host/gpu_message_filter.h" | 81 #include "content/browser/renderer_host/gpu_message_filter.h" |
82 #include "content/browser/renderer_host/media/audio_input_renderer_host.h" | 82 #include "content/browser/renderer_host/media/audio_input_renderer_host.h" |
83 #include "content/browser/renderer_host/media/audio_renderer_host.h" | 83 #include "content/browser/renderer_host/media/audio_renderer_host.h" |
84 #include "content/browser/renderer_host/media/device_request_message_filter.h" | 84 #include "content/browser/renderer_host/media/device_request_message_filter.h" |
85 #include "content/browser/renderer_host/media/media_stream_dispatcher_host.h" | 85 #include "content/browser/renderer_host/media/media_stream_dispatcher_host.h" |
86 #include "content/browser/renderer_host/media/peer_connection_tracker_host.h" | 86 #include "content/browser/renderer_host/media/peer_connection_tracker_host.h" |
87 #include "content/browser/renderer_host/media/video_capture_host.h" | 87 #include "content/browser/renderer_host/media/video_capture_host.h" |
88 #include "content/browser/renderer_host/memory_benchmark_message_filter.h" | 88 #include "content/browser/renderer_host/memory_benchmark_message_filter.h" |
89 #if defined(ENABLE_WEBRTC) | |
jam
2014/07/21 17:24:19
ditto, move this to 158
| |
89 #include "content/browser/renderer_host/p2p/socket_dispatcher_host.h" | 90 #include "content/browser/renderer_host/p2p/socket_dispatcher_host.h" |
91 #endif | |
90 #include "content/browser/renderer_host/pepper/pepper_message_filter.h" | 92 #include "content/browser/renderer_host/pepper/pepper_message_filter.h" |
91 #include "content/browser/renderer_host/pepper/pepper_renderer_connection.h" | 93 #include "content/browser/renderer_host/pepper/pepper_renderer_connection.h" |
92 #include "content/browser/renderer_host/render_message_filter.h" | 94 #include "content/browser/renderer_host/render_message_filter.h" |
93 #include "content/browser/renderer_host/render_view_host_delegate.h" | 95 #include "content/browser/renderer_host/render_view_host_delegate.h" |
94 #include "content/browser/renderer_host/render_view_host_impl.h" | 96 #include "content/browser/renderer_host/render_view_host_impl.h" |
95 #include "content/browser/renderer_host/render_widget_helper.h" | 97 #include "content/browser/renderer_host/render_widget_helper.h" |
96 #include "content/browser/renderer_host/render_widget_host_impl.h" | 98 #include "content/browser/renderer_host/render_widget_host_impl.h" |
97 #include "content/browser/renderer_host/socket_stream_dispatcher_host.h" | 99 #include "content/browser/renderer_host/socket_stream_dispatcher_host.h" |
98 #include "content/browser/renderer_host/text_input_client_message_filter.h" | 100 #include "content/browser/renderer_host/text_input_client_message_filter.h" |
99 #include "content/browser/renderer_host/websocket_dispatcher_host.h" | 101 #include "content/browser/renderer_host/websocket_dispatcher_host.h" |
(...skipping 2264 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
2364 void RenderProcessHostImpl::GpuMemoryBufferAllocated( | 2366 void RenderProcessHostImpl::GpuMemoryBufferAllocated( |
2365 IPC::Message* reply, | 2367 IPC::Message* reply, |
2366 const gfx::GpuMemoryBufferHandle& handle) { | 2368 const gfx::GpuMemoryBufferHandle& handle) { |
2367 DCHECK_CURRENTLY_ON(BrowserThread::UI); | 2369 DCHECK_CURRENTLY_ON(BrowserThread::UI); |
2368 ChildProcessHostMsg_SyncAllocateGpuMemoryBuffer::WriteReplyParams(reply, | 2370 ChildProcessHostMsg_SyncAllocateGpuMemoryBuffer::WriteReplyParams(reply, |
2369 handle); | 2371 handle); |
2370 Send(reply); | 2372 Send(reply); |
2371 } | 2373 } |
2372 | 2374 |
2373 } // namespace content | 2375 } // namespace content |
OLD | NEW |