features.h 817 B

1234567891011121314151617181920212223
  1. // Copyright 2020 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.
  4. #ifndef COMPONENTS_SITE_ISOLATION_FEATURES_H_
  5. #define COMPONENTS_SITE_ISOLATION_FEATURES_H_
  6. #include "base/feature_list.h"
  7. namespace site_isolation {
  8. namespace features {
  9. extern const base::Feature kCacheSiteIsolationMemoryThreshold;
  10. extern const base::Feature kSiteIsolationForPasswordSites;
  11. extern const base::Feature kSiteIsolationForOAuthSites;
  12. extern const base::Feature kSiteIsolationMemoryThresholds;
  13. extern const char kStrictSiteIsolationMemoryThresholdParamName[];
  14. extern const char kPartialSiteIsolationMemoryThresholdParamName[];
  15. } // namespace features
  16. } // namespace site_isolation
  17. #endif // COMPONENTS_SITE_ISOLATION_FEATURES_H_