OLD | NEW |
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 102 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
113 #include "content/browser/shared_worker/worker_storage_partition.h" | 113 #include "content/browser/shared_worker/worker_storage_partition.h" |
114 #include "content/browser/speech/speech_recognition_dispatcher_host.h" | 114 #include "content/browser/speech/speech_recognition_dispatcher_host.h" |
115 #include "content/browser/storage_partition_impl.h" | 115 #include "content/browser/storage_partition_impl.h" |
116 #include "content/browser/streams/stream_context.h" | 116 #include "content/browser/streams/stream_context.h" |
117 #include "content/browser/tracing/trace_message_filter.h" | 117 #include "content/browser/tracing/trace_message_filter.h" |
118 #include "content/browser/webui/web_ui_controller_factory_registry.h" | 118 #include "content/browser/webui/web_ui_controller_factory_registry.h" |
119 #include "content/common/child_process_host_impl.h" | 119 #include "content/common/child_process_host_impl.h" |
120 #include "content/common/child_process_messages.h" | 120 #include "content/common/child_process_messages.h" |
121 #include "content/common/content_switches_internal.h" | 121 #include "content/common/content_switches_internal.h" |
122 #include "content/common/frame_messages.h" | 122 #include "content/common/frame_messages.h" |
123 #include "content/common/gpu/gpu_messages.h" | 123 #include "content/common/gpu/gpu_host_messages.h" |
124 #include "content/common/in_process_child_thread_params.h" | 124 #include "content/common/in_process_child_thread_params.h" |
125 #include "content/common/mojo/channel_init.h" | 125 #include "content/common/mojo/channel_init.h" |
126 #include "content/common/mojo/mojo_messages.h" | 126 #include "content/common/mojo/mojo_messages.h" |
127 #include "content/common/render_process_messages.h" | 127 #include "content/common/render_process_messages.h" |
128 #include "content/common/resource_messages.h" | 128 #include "content/common/resource_messages.h" |
129 #include "content/common/site_isolation_policy.h" | 129 #include "content/common/site_isolation_policy.h" |
130 #include "content/common/view_messages.h" | 130 #include "content/common/view_messages.h" |
131 #include "content/public/browser/browser_context.h" | 131 #include "content/public/browser/browser_context.h" |
132 #include "content/public/browser/content_browser_client.h" | 132 #include "content/public/browser/content_browser_client.h" |
133 #include "content/public/browser/navigator_connect_context.h" | 133 #include "content/public/browser/navigator_connect_context.h" |
(...skipping 2671 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
2805 | 2805 |
2806 // Skip widgets in other processes. | 2806 // Skip widgets in other processes. |
2807 if (rvh->GetProcess()->GetID() != GetID()) | 2807 if (rvh->GetProcess()->GetID() != GetID()) |
2808 continue; | 2808 continue; |
2809 | 2809 |
2810 rvh->OnWebkitPreferencesChanged(); | 2810 rvh->OnWebkitPreferencesChanged(); |
2811 } | 2811 } |
2812 } | 2812 } |
2813 | 2813 |
2814 } // namespace content | 2814 } // namespace content |
OLD | NEW |