| Index: content/browser/site_instance_impl_unittest.cc
|
| diff --git a/content/browser/site_instance_impl_unittest.cc b/content/browser/site_instance_impl_unittest.cc
|
| index ff32c384158487907db52a5df76e8ed6896723e0..4f90163b92d39155a05704c1bee144af4cf11bad 100644
|
| --- a/content/browser/site_instance_impl_unittest.cc
|
| +++ b/content/browser/site_instance_impl_unittest.cc
|
| @@ -567,13 +567,11 @@ static SiteInstanceImpl* CreateSiteInstance(BrowserContext* browser_context,
|
| // Test to ensure that pages that require certain privileges are grouped
|
| // in processes with similar pages.
|
| TEST_F(SiteInstanceTest, ProcessSharingByType) {
|
| - // This test shouldn't run with --site-per-process or
|
| - // --enable-strict-site-isolation modes, since they don't allow render
|
| - // 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;
|
|
|
| // On Android by default the number of renderer hosts is unlimited and process
|
|
|