1 // Copyright 2022 The Chromium Authors 2 // Use of this source code is governed by a BSD-style license that can be 3 // found in the LICENSE file. 4 5 #include "components/metrics/metrics_features.h" 6 7 namespace metrics::features { 8 9 BASE_FEATURE(kMetricsServiceAllowEarlyLogClose, 10 "MetricsServiceAllowEarlyLogClose", 11 base::FEATURE_DISABLED_BY_DEFAULT); 12 13 BASE_FEATURE(kStructuredMetrics, 14 "EnableStructuredMetrics", 15 base::FEATURE_ENABLED_BY_DEFAULT); 16 17 BASE_FEATURE(kFlushPersistentSystemProfileOnWrite, 18 "FlushPersistentSystemProfileOnWrite", 19 base::FEATURE_DISABLED_BY_DEFAULT); 20 21 BASE_FEATURE(kMetricsServiceDeltaSnapshotInBg, 22 "MetricsServiceDeltaSnapshotInBg", 23 base::FEATURE_DISABLED_BY_DEFAULT); 24 25 BASE_FEATURE(kReportingServiceAlwaysFlush, 26 "ReportingServiceAlwaysFlush", 27 base::FEATURE_DISABLED_BY_DEFAULT); 28 29 BASE_FEATURE(kMetricsLogTrimming, 30 "MetricsLogTrimming", 31 base::FEATURE_ENABLED_BY_DEFAULT); 32 33 } // namespace metrics::features 34