Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(8)

Side by Side Diff: content/browser/renderer_host/render_process_host_impl.cc

Issue 1877753003: Move mojo\shell to services\shell (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@62scan
Patch Set: . Created 4 years, 8 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
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
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
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
OLDNEW
« no previous file with comments | « content/browser/mojo/mojo_shell_context.cc ('k') | content/browser/renderer_host/render_widget_host_view_mus.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698