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 158 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
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 "net/url_request/url_request_context_getter.h" | 173 #include "net/url_request/url_request_context_getter.h" |
174 #include "ppapi/shared_impl/ppapi_switches.h" | 174 #include "ppapi/shared_impl/ppapi_switches.h" |
175 #include "services/shell/runner/common/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/display/display_switches.h" |
179 #include "ui/events/event_switches.h" | 180 #include "ui/events/event_switches.h" |
180 #include "ui/gfx/switches.h" | 181 #include "ui/gfx/switches.h" |
181 #include "ui/gl/gl_switches.h" | 182 #include "ui/gl/gl_switches.h" |
182 #include "ui/gl/gpu_switching_manager.h" | 183 #include "ui/gl/gpu_switching_manager.h" |
183 #include "ui/native_theme/native_theme_switches.h" | 184 #include "ui/native_theme/native_theme_switches.h" |
184 | 185 |
185 #if defined(OS_ANDROID) | 186 #if defined(OS_ANDROID) |
186 #include "content/browser/android/child_process_launcher_android.h" | 187 #include "content/browser/android/child_process_launcher_android.h" |
187 #include "content/browser/media/android/browser_demuxer_android.h" | 188 #include "content/browser/media/android/browser_demuxer_android.h" |
188 #include "content/browser/mojo/service_registrar_android.h" | 189 #include "content/browser/mojo/service_registrar_android.h" |
(...skipping 2571 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
2760 | 2761 |
2761 // Skip widgets in other processes. | 2762 // Skip widgets in other processes. |
2762 if (rvh->GetProcess()->GetID() != GetID()) | 2763 if (rvh->GetProcess()->GetID() != GetID()) |
2763 continue; | 2764 continue; |
2764 | 2765 |
2765 rvh->OnWebkitPreferencesChanged(); | 2766 rvh->OnWebkitPreferencesChanged(); |
2766 } | 2767 } |
2767 } | 2768 } |
2768 | 2769 |
2769 } // namespace content | 2770 } // namespace content |
OLD | NEW |