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
3 // found in the LICENSE file.
5 #include "content/common/site_isolation_policy.h"
7 #include "base/command_line.h"
8 #include "content/public/common/content_switches.h"
13 bool SiteIsolationPolicy::AreCrossProcessFramesPossible() {
14 return base::CommandLine::ForCurrentProcess()->HasSwitch(
15 switches::kSitePerProcess
);
19 bool SiteIsolationPolicy::DoesSiteRequireDedicatedProcess(const GURL
& gurl
) {
20 return base::CommandLine::ForCurrentProcess()->HasSwitch(
21 switches::kSitePerProcess
);
25 bool SiteIsolationPolicy::UseSubframeNavigationEntries() {
26 return base::CommandLine::ForCurrentProcess()->HasSwitch(
27 switches::kSitePerProcess
);
31 bool SiteIsolationPolicy::IsSwappedOutStateForbidden() {
32 return base::CommandLine::ForCurrentProcess()->HasSwitch(
33 switches::kSitePerProcess
);
36 } // namespace content