blob: 6b1065787cbaf08703d9d1832a18aafaf35b94a0 [file] [log] [blame]
Avi Drissman8ba1bad2022-09-13 19:22:361// Copyright 2020 The Chromium Authors
Clark DuVallaadc244c2020-06-06 03:47:142// Use of this source code is governed by a BSD-style license that can be
3// found in the LICENSE file.
4
5#ifndef COMPONENTS_SITE_ISOLATION_FEATURES_H_
6#define COMPONENTS_SITE_ISOLATION_FEATURES_H_
7
8#include "base/feature_list.h"
9
10namespace site_isolation {
11namespace features {
12
Egor Pasko2e3c0742022-07-25 16:37:3613extern const base::Feature kCacheSiteIsolationMemoryThreshold;
Clark DuVallaadc244c2020-06-06 03:47:1414extern const base::Feature kSiteIsolationForPasswordSites;
Alex Moshchukbb9074b2021-05-01 01:48:4715extern const base::Feature kSiteIsolationForOAuthSites;
Alex Moshchukb677b79d2021-09-23 22:30:5216extern const base::Feature kSiteIsolationMemoryThresholds;
17extern const char kStrictSiteIsolationMemoryThresholdParamName[];
18extern const char kPartialSiteIsolationMemoryThresholdParamName[];
Clark DuVallaadc244c2020-06-06 03:47:1419
20} // namespace features
21} // namespace site_isolation
22
23#endif // COMPONENTS_SITE_ISOLATION_FEATURES_H_