features.h 679 B

12345678910111213141516171819202122
  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 COMPONENTS_FEEDBACK_FEATURES_H_
  5. #define COMPONENTS_FEEDBACK_FEATURES_H_
  6. #include "base/feature_list.h"
  7. namespace feedback::features {
  8. // All features in alphabetical order. The features should be documented
  9. // alongside the definition of their values in the .cc file.
  10. // Alphabetical:
  11. extern const base::Feature kOsFeedbackSaveReportToLocalForE2ETesting;
  12. extern bool IsOsFeedbackSaveReportToLocalForE2ETestingEnabled();
  13. } // namespace feedback::features
  14. #endif // COMPONENTS_FEEDBACK_FEATURES_H_