Update V8 to version 4.7.42.
[chromium-blink-merge.git] / content / common / site_isolation_policy.cc
blobd41ff3dbdb110af587814c55423182d3b676bbcd
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"
10 namespace content {
12 // static
13 bool SiteIsolationPolicy::AreCrossProcessFramesPossible() {
14 return base::CommandLine::ForCurrentProcess()->HasSwitch(
15 switches::kSitePerProcess);
18 // static
19 bool SiteIsolationPolicy::DoesSiteRequireDedicatedProcess(const GURL& gurl) {
20 return base::CommandLine::ForCurrentProcess()->HasSwitch(
21 switches::kSitePerProcess);
24 // static
25 bool SiteIsolationPolicy::UseSubframeNavigationEntries() {
26 return base::CommandLine::ForCurrentProcess()->HasSwitch(
27 switches::kSitePerProcess);
30 // static
31 bool SiteIsolationPolicy::IsSwappedOutStateForbidden() {
32 return base::CommandLine::ForCurrentProcess()->HasSwitch(
33 switches::kSitePerProcess);
36 } // namespace content