• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1 // Copyright 2023 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 #ifndef COMPONENTS_METRICS_STRUCTURED_STRUCTURED_METRICS_PREFS_H_
5 #define COMPONENTS_METRICS_STRUCTURED_STRUCTURED_METRICS_PREFS_H_
6 
7 namespace metrics::structured::prefs {
8 
9 // Preference which stores serialized StructuredMetrics logs to be uploaded.
10 extern const char kLogStoreName[];
11 
12 // Preference which stores device keys for Structured Metrics. Currently only
13 // used on desktop Chrome platforms.
14 extern const char kDeviceKeyDataPrefName[];
15 
16 }  // namespace metrics::structured::prefs
17 
18 #endif  // COMPONENTS_METRICS_STRUCTURED_STRUCTURED_METRICS_PREFS_H_
19