| 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 146 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 157 #include "content/public/common/sandboxed_process_launcher_delegate.h" | 157 #include "content/public/common/sandboxed_process_launcher_delegate.h" |
| 158 #include "content/public/common/url_constants.h" | 158 #include "content/public/common/url_constants.h" |
| 159 #include "device/battery/battery_monitor_impl.h" | 159 #include "device/battery/battery_monitor_impl.h" |
| 160 #include "gpu/GLES2/gl2extchromium.h" | 160 #include "gpu/GLES2/gl2extchromium.h" |
| 161 #include "gpu/command_buffer/client/gpu_switches.h" | 161 #include "gpu/command_buffer/client/gpu_switches.h" |
| 162 #include "gpu/command_buffer/common/gles2_cmd_utils.h" | 162 #include "gpu/command_buffer/common/gles2_cmd_utils.h" |
| 163 #include "gpu/command_buffer/service/gpu_switches.h" | 163 #include "gpu/command_buffer/service/gpu_switches.h" |
| 164 #include "ipc/attachment_broker.h" | 164 #include "ipc/attachment_broker.h" |
| 165 #include "ipc/attachment_broker_privileged.h" | 165 #include "ipc/attachment_broker_privileged.h" |
| 166 #include "ipc/ipc_channel.h" | 166 #include "ipc/ipc_channel.h" |
| 167 #include "ipc/ipc_channel_mojo.h" |
| 167 #include "ipc/ipc_logging.h" | 168 #include "ipc/ipc_logging.h" |
| 168 #include "ipc/ipc_sender.h" | 169 #include "ipc/ipc_sender.h" |
| 169 #include "ipc/ipc_switches.h" | 170 #include "ipc/ipc_switches.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/display/display_switches.h" |
| 180 #include "ui/events/event_switches.h" | 180 #include "ui/events/event_switches.h" |
| (...skipping 2619 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 2800 | 2800 |
| 2801 // Skip widgets in other processes. | 2801 // Skip widgets in other processes. |
| 2802 if (rvh->GetProcess()->GetID() != GetID()) | 2802 if (rvh->GetProcess()->GetID() != GetID()) |
| 2803 continue; | 2803 continue; |
| 2804 | 2804 |
| 2805 rvh->OnWebkitPreferencesChanged(); | 2805 rvh->OnWebkitPreferencesChanged(); |
| 2806 } | 2806 } |
| 2807 } | 2807 } |
| 2808 | 2808 |
| 2809 } // namespace content | 2809 } // namespace content |
| OLD | NEW |