features.h 711 B

12345678910111213141516171819202122
  1. // Copyright 2016 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_BROWSER_WATCHER_FEATURES_H_
  5. #define COMPONENTS_BROWSER_WATCHER_FEATURES_H_
  6. #include "base/feature_list.h"
  7. namespace browser_watcher {
  8. // Enables activity tracking and extending crash reports with structured
  9. // high-level program state.
  10. extern const base::Feature kExtendedCrashReportingFeature;
  11. // Name of an experiment parameter that controls whether to record browser
  12. // activity in-memory only.
  13. extern const char kInMemoryOnlyParam[];
  14. } // namespace browser_watcher
  15. #endif // COMPONENTS_BROWSER_WATCHER_FEATURES_H_