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 32 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
43 #include "content/browser/browser_plugin/browser_plugin_geolocation_permission_c
ontext.h" | 43 #include "content/browser/browser_plugin/browser_plugin_geolocation_permission_c
ontext.h" |
44 #include "content/browser/browser_plugin/browser_plugin_message_filter.h" | 44 #include "content/browser/browser_plugin/browser_plugin_message_filter.h" |
45 #include "content/browser/child_process_security_policy_impl.h" | 45 #include "content/browser/child_process_security_policy_impl.h" |
46 #include "content/browser/device_orientation/device_motion_message_filter.h" | 46 #include "content/browser/device_orientation/device_motion_message_filter.h" |
47 #include "content/browser/device_orientation/device_orientation_message_filter.h
" | 47 #include "content/browser/device_orientation/device_orientation_message_filter.h
" |
48 #include "content/browser/dom_storage/dom_storage_context_wrapper.h" | 48 #include "content/browser/dom_storage/dom_storage_context_wrapper.h" |
49 #include "content/browser/dom_storage/dom_storage_message_filter.h" | 49 #include "content/browser/dom_storage/dom_storage_message_filter.h" |
50 #include "content/browser/download/mhtml_generation_manager.h" | 50 #include "content/browser/download/mhtml_generation_manager.h" |
51 #include "content/browser/fileapi/chrome_blob_storage_context.h" | 51 #include "content/browser/fileapi/chrome_blob_storage_context.h" |
52 #include "content/browser/fileapi/fileapi_message_filter.h" | 52 #include "content/browser/fileapi/fileapi_message_filter.h" |
| 53 #include "content/browser/frame_host/render_frame_message_filter.h" |
53 #include "content/browser/geolocation/geolocation_dispatcher_host.h" | 54 #include "content/browser/geolocation/geolocation_dispatcher_host.h" |
54 #include "content/browser/gpu/compositor_util.h" | 55 #include "content/browser/gpu/compositor_util.h" |
55 #include "content/browser/gpu/gpu_data_manager_impl.h" | 56 #include "content/browser/gpu/gpu_data_manager_impl.h" |
56 #include "content/browser/gpu/gpu_process_host.h" | 57 #include "content/browser/gpu/gpu_process_host.h" |
57 #include "content/browser/gpu/shader_disk_cache.h" | 58 #include "content/browser/gpu/shader_disk_cache.h" |
58 #include "content/browser/histogram_message_filter.h" | 59 #include "content/browser/histogram_message_filter.h" |
59 #include "content/browser/indexed_db/indexed_db_context_impl.h" | 60 #include "content/browser/indexed_db/indexed_db_context_impl.h" |
60 #include "content/browser/indexed_db/indexed_db_dispatcher_host.h" | 61 #include "content/browser/indexed_db/indexed_db_dispatcher_host.h" |
61 #include "content/browser/loader/resource_message_filter.h" | 62 #include "content/browser/loader/resource_message_filter.h" |
62 #include "content/browser/loader/resource_scheduler_filter.h" | 63 #include "content/browser/loader/resource_scheduler_filter.h" |
(...skipping 15 matching lines...) Expand all Loading... |
78 #include "content/browser/renderer_host/media/device_request_message_filter.h" | 79 #include "content/browser/renderer_host/media/device_request_message_filter.h" |
79 #include "content/browser/renderer_host/media/media_stream_dispatcher_host.h" | 80 #include "content/browser/renderer_host/media/media_stream_dispatcher_host.h" |
80 #include "content/browser/renderer_host/media/midi_dispatcher_host.h" | 81 #include "content/browser/renderer_host/media/midi_dispatcher_host.h" |
81 #include "content/browser/renderer_host/media/midi_host.h" | 82 #include "content/browser/renderer_host/media/midi_host.h" |
82 #include "content/browser/renderer_host/media/peer_connection_tracker_host.h" | 83 #include "content/browser/renderer_host/media/peer_connection_tracker_host.h" |
83 #include "content/browser/renderer_host/media/video_capture_host.h" | 84 #include "content/browser/renderer_host/media/video_capture_host.h" |
84 #include "content/browser/renderer_host/memory_benchmark_message_filter.h" | 85 #include "content/browser/renderer_host/memory_benchmark_message_filter.h" |
85 #include "content/browser/renderer_host/p2p/socket_dispatcher_host.h" | 86 #include "content/browser/renderer_host/p2p/socket_dispatcher_host.h" |
86 #include "content/browser/renderer_host/pepper/pepper_message_filter.h" | 87 #include "content/browser/renderer_host/pepper/pepper_message_filter.h" |
87 #include "content/browser/renderer_host/pepper/pepper_renderer_connection.h" | 88 #include "content/browser/renderer_host/pepper/pepper_renderer_connection.h" |
88 #include "content/browser/renderer_host/render_frame_message_filter.h" | |
89 #include "content/browser/renderer_host/render_message_filter.h" | 89 #include "content/browser/renderer_host/render_message_filter.h" |
90 #include "content/browser/renderer_host/render_view_host_delegate.h" | 90 #include "content/browser/renderer_host/render_view_host_delegate.h" |
91 #include "content/browser/renderer_host/render_view_host_impl.h" | 91 #include "content/browser/renderer_host/render_view_host_impl.h" |
92 #include "content/browser/renderer_host/render_widget_helper.h" | 92 #include "content/browser/renderer_host/render_widget_helper.h" |
93 #include "content/browser/renderer_host/render_widget_host_impl.h" | 93 #include "content/browser/renderer_host/render_widget_host_impl.h" |
94 #include "content/browser/renderer_host/socket_stream_dispatcher_host.h" | 94 #include "content/browser/renderer_host/socket_stream_dispatcher_host.h" |
95 #include "content/browser/renderer_host/text_input_client_message_filter.h" | 95 #include "content/browser/renderer_host/text_input_client_message_filter.h" |
96 #include "content/browser/renderer_host/websocket_dispatcher_host.h" | 96 #include "content/browser/renderer_host/websocket_dispatcher_host.h" |
97 #include "content/browser/resolve_proxy_msg_helper.h" | 97 #include "content/browser/resolve_proxy_msg_helper.h" |
98 #include "content/browser/service_worker/service_worker_context.h" | 98 #include "content/browser/service_worker/service_worker_context.h" |
(...skipping 1727 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1826 // Skip widgets in other processes. | 1826 // Skip widgets in other processes. |
1827 if (widget->GetProcess()->GetID() != GetID()) | 1827 if (widget->GetProcess()->GetID() != GetID()) |
1828 continue; | 1828 continue; |
1829 | 1829 |
1830 RenderViewHost* rvh = RenderViewHost::From(widget); | 1830 RenderViewHost* rvh = RenderViewHost::From(widget); |
1831 rvh->UpdateWebkitPreferences(rvh->GetWebkitPreferences()); | 1831 rvh->UpdateWebkitPreferences(rvh->GetWebkitPreferences()); |
1832 } | 1832 } |
1833 } | 1833 } |
1834 | 1834 |
1835 } // namespace content | 1835 } // namespace content |
OLD | NEW |