features.h 578 B

123456789101112131415161718192021
  1. // Copyright 2022 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 BASE_FEATURES_H_
  5. #define BASE_FEATURES_H_
  6. #include "base/base_export.h"
  7. #include "base/feature_list.h"
  8. namespace base::features {
  9. // All features in alphabetical order. The features should be documented
  10. // alongside the definition of their values in the .cc file.
  11. // Alphabetical:
  12. BASE_EXPORT extern const base::Feature kOptimizeDataUrls;
  13. } // namespace base::features
  14. #endif // BASE_FEATURES_H_