metrics_pref_names.h revision f8ee788a64d60abd8f2d742a5fdedde054ecd910
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 kMetricsClientID[];
14extern const char kMetricsInitialLogs[];
15extern const char kMetricsInitialLogsOld[];
16extern const char kMetricsLowEntropySource[];
17extern const char kMetricsMachineId[];
18extern const char kMetricsOldClientID[];
19extern const char kMetricsOldLowEntropySource[];
20extern const char kMetricsOngoingLogs[];
21extern const char kMetricsOngoingLogsOld[];
22extern const char kMetricsResetIds[];
23extern const char kMetricsReportingEnabledTimestamp[];
24extern const char kMetricsSessionID[];
25extern const char kStabilityBreakpadRegistrationSuccess[];
26extern const char kStabilityBreakpadRegistrationFail[];
27extern const char kStabilityCrashCount[];
28extern const char kStabilityDebuggerPresent[];
29extern const char kStabilityDebuggerNotPresent[];
30extern const char kStabilityExecutionPhase[];
31extern const char kStabilityExitedCleanly[];
32extern const char kStabilityIncompleteSessionEndCount[];
33extern const char kStabilityLastTimestampSec[];
34extern const char kStabilityLaunchCount[];
35extern const char kStabilityLaunchTimeSec[];
36extern const char kStabilitySavedSystemProfile[];
37extern const char kStabilitySavedSystemProfileHash[];
38extern const char kStabilitySessionEndCompleted[];
39extern const char kStabilityStatsBuildTime[];
40extern const char kStabilityStatsVersion[];
41extern const char kUninstallLaunchCount[];
42extern const char kUninstallMetricsUptimeSec[];
43}  // namespace prefs
44}  // namespace metrics
45
46#endif  // COMPONENTS_METRICS_METRICS_PREF_NAMES_H_
47