features.h 718 B

123456789101112131415161718192021
  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_DOMAIN_RELIABILITY_FEATURES_H_
  5. #define COMPONENTS_DOMAIN_RELIABILITY_FEATURES_H_
  6. #include "base/feature_list.h"
  7. #include "components/domain_reliability/domain_reliability_export.h"
  8. namespace domain_reliability {
  9. namespace features {
  10. // Partitions Domain Reliability beacons and upload by NetworkIsolationKey.
  11. DOMAIN_RELIABILITY_EXPORT extern const base::Feature
  12. kPartitionDomainReliabilityByNetworkIsolationKey;
  13. } // namespace features
  14. } // namespace domain_reliability
  15. #endif // COMPONENTS_DOMAIN_RELIABILITY_FEATURES_H_