From 8d3132f675bcef5e10bb7cd427a2f3452923192e Mon Sep 17 00:00:00 2001 From: "ajwong@chromium.org" Date: Wed, 12 Oct 2011 07:13:42 +0000 Subject: Assign urls to RenderProcessHosts by if they refer to isolated apps, or use the extension scheme. With extensions, a renderer process may be is granted privileges that are different from normal web renderers. This defines two coarse privilege buckets: one for extensions, and the other for extensions that have isolated storage. Only sites that belong to the same privilege bucket will be assigned to the same RenderProcessHosts. BUG=60844 TEST=new browser_tests Review URL: http://codereview.chromium.org/8186003 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@105029 0039d316-1c4b-4281-b951-d872f2087c98 --- content/browser/renderer_host/render_process_host.cc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'content/browser/renderer_host/render_process_host.cc') diff --git a/content/browser/renderer_host/render_process_host.cc b/content/browser/renderer_host/render_process_host.cc index abb1680..a7fc8d9 100644 --- a/content/browser/renderer_host/render_process_host.cc +++ b/content/browser/renderer_host/render_process_host.cc @@ -88,7 +88,7 @@ IDMap all_hosts; bool RenderProcessHost::run_renderer_in_process_ = false; // static -void RenderProcessHost::SetMaxRendererProcessCount(size_t count) { +void RenderProcessHost::SetMaxRendererProcessCountForTest(size_t count) { max_renderer_count_override = count; } -- cgit v1.1