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

Unified Diff: content/common/site_isolation_policy.cc

Issue 1797363002: "Top Document Isolation" mode (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Suppress tests under --site-per-process Created 4 years, 9 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
« no previous file with comments | « content/common/site_isolation_policy.h ('k') | content/content_tests.gypi » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: content/common/site_isolation_policy.cc
diff --git a/content/common/site_isolation_policy.cc b/content/common/site_isolation_policy.cc
index 694c9db3336be49465f81223f9f2f49e70575a07..b25741b3b39b2f0b5dada6f17313406071c81b09 100644
--- a/content/common/site_isolation_policy.cc
+++ b/content/common/site_isolation_policy.cc
@@ -15,8 +15,8 @@ namespace content {
// static
bool SiteIsolationPolicy::AreCrossProcessFramesPossible() {
- return base::CommandLine::ForCurrentProcess()->HasSwitch(
- switches::kSitePerProcess) ||
+ return UseDedicatedProcessesForAllSites() ||
+ IsTopDocumentIsolationEnabled() ||
GetContentClient()->IsSupplementarySiteIsolationModeEnabled() ||
BrowserPluginGuestMode::UseCrossProcessFramesForGuests();
}
@@ -28,6 +28,16 @@ bool SiteIsolationPolicy::UseDedicatedProcessesForAllSites() {
}
// static
+bool SiteIsolationPolicy::IsTopDocumentIsolationEnabled() {
+ // --site-per-process trumps --top-document-isolation.
+ if (UseDedicatedProcessesForAllSites())
+ return false;
+
+ return base::CommandLine::ForCurrentProcess()->HasSwitch(
+ switches::kTopDocumentIsolation);
+}
+
+// static
bool SiteIsolationPolicy::UseSubframeNavigationEntries() {
// Enable the new navigation history behavior if any manner of site isolation
// is active.
« no previous file with comments | « content/common/site_isolation_policy.h ('k') | content/content_tests.gypi » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698