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 152 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
163 #include "gpu/command_buffer/common/gles2_cmd_utils.h" | 163 #include "gpu/command_buffer/common/gles2_cmd_utils.h" |
164 #include "gpu/command_buffer/service/gpu_switches.h" | 164 #include "gpu/command_buffer/service/gpu_switches.h" |
165 #include "ipc/attachment_broker.h" | 165 #include "ipc/attachment_broker.h" |
166 #include "ipc/attachment_broker_privileged.h" | 166 #include "ipc/attachment_broker_privileged.h" |
167 #include "ipc/ipc_channel.h" | 167 #include "ipc/ipc_channel.h" |
168 #include "ipc/ipc_logging.h" | 168 #include "ipc/ipc_logging.h" |
169 #include "ipc/ipc_switches.h" | 169 #include "ipc/ipc_switches.h" |
170 #include "ipc/mojo/ipc_channel_mojo.h" | 170 #include "ipc/mojo/ipc_channel_mojo.h" |
171 #include "media/base/media_switches.h" | 171 #include "media/base/media_switches.h" |
172 #include "mojo/edk/embedder/embedder.h" | 172 #include "mojo/edk/embedder/embedder.h" |
173 #include "mojo/shell/runner/common/switches.h" | |
174 #include "net/url_request/url_request_context_getter.h" | 173 #include "net/url_request/url_request_context_getter.h" |
175 #include "ppapi/shared_impl/ppapi_switches.h" | 174 #include "ppapi/shared_impl/ppapi_switches.h" |
| 175 #include "services/shell/runner/common/switches.h" |
176 #include "storage/browser/fileapi/sandbox_file_system_backend.h" | 176 #include "storage/browser/fileapi/sandbox_file_system_backend.h" |
177 #include "third_party/skia/include/core/SkBitmap.h" | 177 #include "third_party/skia/include/core/SkBitmap.h" |
178 #include "ui/base/ui_base_switches.h" | 178 #include "ui/base/ui_base_switches.h" |
179 #include "ui/events/event_switches.h" | 179 #include "ui/events/event_switches.h" |
180 #include "ui/gfx/switches.h" | 180 #include "ui/gfx/switches.h" |
181 #include "ui/gl/gl_switches.h" | 181 #include "ui/gl/gl_switches.h" |
182 #include "ui/gl/gpu_switching_manager.h" | 182 #include "ui/gl/gpu_switching_manager.h" |
183 #include "ui/native_theme/native_theme_switches.h" | 183 #include "ui/native_theme/native_theme_switches.h" |
184 | 184 |
185 #if defined(OS_ANDROID) | 185 #if defined(OS_ANDROID) |
(...skipping 2643 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
2829 | 2829 |
2830 // Skip widgets in other processes. | 2830 // Skip widgets in other processes. |
2831 if (rvh->GetProcess()->GetID() != GetID()) | 2831 if (rvh->GetProcess()->GetID() != GetID()) |
2832 continue; | 2832 continue; |
2833 | 2833 |
2834 rvh->OnWebkitPreferencesChanged(); | 2834 rvh->OnWebkitPreferencesChanged(); |
2835 } | 2835 } |
2836 } | 2836 } |
2837 | 2837 |
2838 } // namespace content | 2838 } // namespace content |
OLD | NEW |