• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
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 BASE_FEATURE(kMetricsServiceAllowEarlyLogClose,
9              "MetricsServiceAllowEarlyLogClose",
10              base::FEATURE_DISABLED_BY_DEFAULT);
11 
12 BASE_FEATURE(kMetricsClearLogsOnClonedInstall,
13              "MetricsClearLogsOnClonedInstall",
14              base::FEATURE_DISABLED_BY_DEFAULT);
15 
16 #if BUILDFLAG(IS_ANDROID) || BUILDFLAG(IS_IOS)
17 BASE_FEATURE(kReportingServiceFlushPrefsOnUploadInBackground,
18              "ReportingServiceFlushPrefsOnUploadInBackground",
19              base::FEATURE_DISABLED_BY_DEFAULT);
20 #endif  // BUILDFLAG(IS_ANDROID) || BUILDFLAG(IS_IOS)
21 }  // namespace metrics::features
22