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

Unified Diff: content/browser/renderer_host/render_process_host_unittest.cc

Issue 1144253003: Remove --enable-strict-site-isolation (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Set correct upstream Created 5 years, 6 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 side-by-side diff with in-line comments
Download patch
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..170dd012100958330477e80f62f23bfc9f954cbb 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 render process reuse this test explicitly exercises.
Charlie Reis 2015/06/05 23:06:18 nit: renderer process
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;
// Disable any overrides.

Powered by Google App Engine
This is Rietveld 408576698