blob: 07a3a645cd56d2ece6d20fb7f4833c01811ea954 [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
Daniel Cheng4fd9dbb2022-09-24 02:58:4213BASE_DECLARE_FEATURE(kCacheSiteIsolationMemoryThreshold);
14BASE_DECLARE_FEATURE(kSiteIsolationForPasswordSites);
15BASE_DECLARE_FEATURE(kSiteIsolationForOAuthSites);
16BASE_DECLARE_FEATURE(kSiteIsolationMemoryThresholds);
Alex Moshchukb677b79d2021-09-23 22:30:5217extern 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_