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..eeb73137e41c4b4095eaf4ac8ebd69a495b80b8f 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 render process reuse this test explicitly exercises. |
Charlie Reis
2015/06/05 23:06:18
nit: renderer
ncarter (slow)
2015/06/06 18:24:34
Done.
|
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 |