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 | |
Daniel Cheng | 4fd9dbb | 2022-09-24 02:58:42 | [diff] [blame^] | 13 | BASE_DECLARE_FEATURE(kCacheSiteIsolationMemoryThreshold); |
| 14 | BASE_DECLARE_FEATURE(kSiteIsolationForPasswordSites); |
| 15 | BASE_DECLARE_FEATURE(kSiteIsolationForOAuthSites); |
| 16 | BASE_DECLARE_FEATURE(kSiteIsolationMemoryThresholds); |
Alex Moshchuk | b677b79d | 2021-09-23 22:30:52 | [diff] [blame] | 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_ |