| Index: content/browser/renderer_host/render_process_host_unittest.cc
|
| diff --git a/content/browser/renderer_host/render_process_host_unittest.cc b/content/browser/renderer_host/render_process_host_unittest.cc
|
| index e25c53c73072fba1154c06b5d0530fddf10f2275..83aa6b2273e6101082c77fb2333621c348697861 100644
|
| --- a/content/browser/renderer_host/render_process_host_unittest.cc
|
| +++ b/content/browser/renderer_host/render_process_host_unittest.cc
|
| @@ -33,13 +33,11 @@ TEST_F(RenderProcessHostUnitTest, GuestsAreNotSuitableHosts) {
|
|
|
| #if !defined(OS_ANDROID)
|
| TEST_F(RenderProcessHostUnitTest, RendererProcessLimit) {
|
| - // This test shouldn't run with --site-per-process or
|
| - // --enable-strict-site-isolation modes, since they don't allow renderer
|
| - // process reuse, which this test explicitly exercises.
|
| + // This test shouldn't run with --site-per-process mode, which prohibits
|
| + // the renderer process reuse this test explicitly exercises.
|
| const base::CommandLine& command_line =
|
| *base::CommandLine::ForCurrentProcess();
|
| - if (command_line.HasSwitch(switches::kSitePerProcess) ||
|
| - command_line.HasSwitch(switches::kEnableStrictSiteIsolation))
|
| + if (command_line.HasSwitch(switches::kSitePerProcess))
|
| return;
|
|
|
| // Disable any overrides.
|
|
|