metrics_pref_names.h revision 116680a4aac90f2aa7413d9095a592090648e557
1// Copyright 2014 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
5#ifndef COMPONENTS_METRICS_METRICS_PREF_NAMES_H_
6#define COMPONENTS_METRICS_METRICS_PREF_NAMES_H_
7
8namespace metrics {
9namespace prefs {
10
11// Alphabetical list of preference names specific to the metrics
12// component. Document each in the .cc file.
13extern const char kInstallDate[];
14extern const char kMetricsClientID[];
15extern const char kMetricsInitialLogs[];
16extern const char kMetricsInitialLogsOld[];
17extern const char kMetricsLowEntropySource[];
18extern const char kMetricsMachineId[];
19extern const char kMetricsOldClientID[];
20extern const char kMetricsOldLowEntropySource[];
21extern const char kMetricsOngoingLogs[];
22extern const char kMetricsOngoingLogsOld[];
23extern const char kMetricsResetIds[];
24extern const char kMetricsReportingEnabledTimestamp[];
25extern const char kMetricsSessionID[];
26extern const char kStabilityBreakpadRegistrationSuccess[];
27extern const char kStabilityBreakpadRegistrationFail[];
28extern const char kStabilityCrashCount[];
29extern const char kStabilityDebuggerPresent[];
30extern const char kStabilityDebuggerNotPresent[];
31extern const char kStabilityExecutionPhase[];
32extern const char kStabilityExitedCleanly[];
33extern const char kStabilityIncompleteSessionEndCount[];
34extern const char kStabilityLastTimestampSec[];
35extern const char kStabilityLaunchCount[];
36extern const char kStabilityLaunchTimeSec[];
37extern const char kStabilitySavedSystemProfile[];
38extern const char kStabilitySavedSystemProfileHash[];
39extern const char kStabilitySessionEndCompleted[];
40extern const char kStabilityStatsBuildTime[];
41extern const char kStabilityStatsVersion[];
42extern const char kUninstallLaunchCount[];
43extern const char kUninstallMetricsUptimeSec[];
44}  // namespace prefs
45}  // namespace metrics
46
47#endif  // COMPONENTS_METRICS_METRICS_PREF_NAMES_H_
48