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

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

Issue 8336007: Move content_client.h into content/public. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Add back a needed include. Created 9 years, 2 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 | Annotate | Revision Log
OLDNEW
1 // Copyright (c) 2011 The Chromium Authors. All rights reserved. 1 // Copyright (c) 2011 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 #include "content/browser/renderer_host/render_process_host.h" 5 #include "content/browser/renderer_host/render_process_host.h"
6 6
7 #include "base/command_line.h" 7 #include "base/command_line.h"
8 #include "base/rand_util.h" 8 #include "base/rand_util.h"
9 #include "base/sys_info.h" 9 #include "base/sys_info.h"
10 #include "content/browser/browser_main.h" 10 #include "content/browser/browser_main.h"
11 #include "content/browser/browser_thread.h" 11 #include "content/browser/browser_thread.h"
12 #include "content/browser/child_process_security_policy.h" 12 #include "content/browser/child_process_security_policy.h"
13 #include "content/browser/content_browser_client.h" 13 #include "content/browser/content_browser_client.h"
14 #include "content/browser/webui/web_ui_factory.h" 14 #include "content/browser/webui/web_ui_factory.h"
15 #include "content/common/child_process_info.h" 15 #include "content/common/child_process_info.h"
16 #include "content/common/content_client.h"
17 #include "content/common/content_constants.h" 16 #include "content/common/content_constants.h"
18 #include "content/common/notification_service.h" 17 #include "content/common/notification_service.h"
19 #include "content/public/browser/notification_types.h" 18 #include "content/public/browser/notification_types.h"
20 #include "content/public/common/content_switches.h" 19 #include "content/public/common/content_switches.h"
21 20
22 namespace { 21 namespace {
23 22
24 size_t max_renderer_count_override = 0; 23 size_t max_renderer_count_override = 0;
25 24
26 size_t GetMaxRendererProcessCount() { 25 size_t GetMaxRendererProcessCount() {
(...skipping 210 matching lines...) Expand 10 before | Expand all | Expand 10 after
237 236
238 // Now pick a random suitable renderer, if we have any. 237 // Now pick a random suitable renderer, if we have any.
239 if (!suitable_renderers.empty()) { 238 if (!suitable_renderers.empty()) {
240 int suitable_count = static_cast<int>(suitable_renderers.size()); 239 int suitable_count = static_cast<int>(suitable_renderers.size());
241 int random_index = base::RandInt(0, suitable_count - 1); 240 int random_index = base::RandInt(0, suitable_count - 1);
242 return suitable_renderers[random_index]; 241 return suitable_renderers[random_index];
243 } 242 }
244 243
245 return NULL; 244 return NULL;
246 } 245 }
OLDNEW
« no previous file with comments | « content/browser/gpu/gpu_data_manager.cc ('k') | content/browser/renderer_host/test_render_view_host.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698