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

Side by Side 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: Two new browsertests. 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 unified diff | Download patch
OLDNEW
1 // Copyright 2015 The Chromium Authors. All rights reserved. 1 // Copyright 2015 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be 2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file. 3 // found in the LICENSE file.
4 4
5 #include "content/common/site_isolation_policy.h" 5 #include "content/common/site_isolation_policy.h"
6 6
7 #include "base/command_line.h" 7 #include "base/command_line.h"
8 #include "base/lazy_instance.h" 8 #include "base/lazy_instance.h"
9 #include "content/public/common/browser_plugin_guest_mode.h" 9 #include "content/public/common/browser_plugin_guest_mode.h"
10 #include "content/public/common/browser_side_navigation_policy.h" 10 #include "content/public/common/browser_side_navigation_policy.h"
11 #include "content/public/common/content_client.h" 11 #include "content/public/common/content_client.h"
12 #include "content/public/common/content_switches.h" 12 #include "content/public/common/content_switches.h"
13 13
14 namespace content { 14 namespace content {
15 15
16 // static 16 // static
17 bool SiteIsolationPolicy::AreCrossProcessFramesPossible() { 17 bool SiteIsolationPolicy::AreCrossProcessFramesPossible() {
18 return base::CommandLine::ForCurrentProcess()->HasSwitch( 18 return UseDedicatedProcessesForAllSites() ||
19 switches::kSitePerProcess) || 19 UseDedicatedProcessForTopDocument() ||
20 GetContentClient()->IsSupplementarySiteIsolationModeEnabled() || 20 GetContentClient()->IsSupplementarySiteIsolationModeEnabled() ||
21 BrowserPluginGuestMode::UseCrossProcessFramesForGuests(); 21 BrowserPluginGuestMode::UseCrossProcessFramesForGuests();
22 } 22 }
23 23
24 // static 24 // static
25 bool SiteIsolationPolicy::UseDedicatedProcessesForAllSites() { 25 bool SiteIsolationPolicy::UseDedicatedProcessesForAllSites() {
26 return base::CommandLine::ForCurrentProcess()->HasSwitch( 26 return base::CommandLine::ForCurrentProcess()->HasSwitch(
27 switches::kSitePerProcess); 27 switches::kSitePerProcess);
28 } 28 }
29 29
30 // static 30 // static
31 bool SiteIsolationPolicy::UseDedicatedProcessForTopDocument() {
32 return base::CommandLine::ForCurrentProcess()->HasSwitch(
33 switches::kIsolateTopDocument);
34 }
35
36 // static
31 bool SiteIsolationPolicy::UseSubframeNavigationEntries() { 37 bool SiteIsolationPolicy::UseSubframeNavigationEntries() {
32 // Enable the new navigation history behavior if any manner of site isolation 38 // Enable the new navigation history behavior if any manner of site isolation
33 // is active. 39 // is active.
34 // PlzNavigate: also enable the new navigation history behavior. 40 // PlzNavigate: also enable the new navigation history behavior.
35 return AreCrossProcessFramesPossible() || IsBrowserSideNavigationEnabled(); 41 return AreCrossProcessFramesPossible() || IsBrowserSideNavigationEnabled();
36 } 42 }
37 43
38 } // namespace content 44 } // namespace content
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698