Avi Drissman | 8ba1bad | 2022-09-13 19:22:36 | [diff] [blame^] | 1 | // Copyright 2020 The Chromium Authors |
Clark DuVall | aadc244c | 2020-06-06 03:47:14 | [diff] [blame] | 2 | // 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 | |
| 10 | namespace site_isolation { |
| 11 | namespace features { |
| 12 | |
Egor Pasko | 2e3c074 | 2022-07-25 16:37:36 | [diff] [blame] | 13 | extern const base::Feature kCacheSiteIsolationMemoryThreshold; |
Clark DuVall | aadc244c | 2020-06-06 03:47:14 | [diff] [blame] | 14 | extern const base::Feature kSiteIsolationForPasswordSites; |
Alex Moshchuk | bb9074b | 2021-05-01 01:48:47 | [diff] [blame] | 15 | extern const base::Feature kSiteIsolationForOAuthSites; |
Alex Moshchuk | b677b79d | 2021-09-23 22:30:52 | [diff] [blame] | 16 | extern const base::Feature kSiteIsolationMemoryThresholds; |
| 17 | extern const char kStrictSiteIsolationMemoryThresholdParamName[]; |
| 18 | extern const char kPartialSiteIsolationMemoryThresholdParamName[]; |
Clark DuVall | aadc244c | 2020-06-06 03:47:14 | [diff] [blame] | 19 | |
| 20 | } // namespace features |
| 21 | } // namespace site_isolation |
| 22 | |
| 23 | #endif // COMPONENTS_SITE_ISOLATION_FEATURES_H_ |