Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(360)

Side by Side Diff: components/metrics/stability_pref_names.h

Issue 2687393004: Gather stability prefs into managing objects. (Closed)
Patch Set: Keep MetricsLog::RegisterPrefs Created 3 years, 10 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
(Empty)
1 // Copyright 2017 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_STABILITY_PREF_NAMES_H_
6 #define COMPONENTS_METRICS_STABILITY_PREF_NAMES_H_
7
8 namespace metrics {
9 namespace prefs {
10
11 // Preferences for recording stability logs.
12 extern const char kStabilityBreakpadRegistrationSuccess[];
13 extern const char kStabilityBreakpadRegistrationFail[];
14 extern const char kStabilityChildProcessCrashCount[];
15 extern const char kStabilityCrashCount[];
16 extern const char kStabilityDebuggerPresent[];
17 extern const char kStabilityDebuggerNotPresent[];
18 extern const char kStabilityDeferredCount[];
19 extern const char kStabilityDiscardCount[];
20 extern const char kStabilityExecutionPhase[];
21 extern const char kStabilityExtensionRendererCrashCount[];
22 extern const char kStabilityExtensionRendererFailedLaunchCount[];
23 extern const char kStabilityExtensionRendererLaunchCount[];
24 extern const char kStabilityExitedCleanly[];
25 extern const char kStabilityIncompleteSessionEndCount[];
26 extern const char kStabilityLaunchCount[];
27 extern const char kStabilityPageLoadCount[];
28 extern const char kStabilityRendererCrashCount[];
29 extern const char kStabilityRendererFailedLaunchCount[];
30 extern const char kStabilityRendererHangCount[];
31 extern const char kStabilityRendererLaunchCount[];
32 extern const char kStabilitySavedSystemProfile[];
33 extern const char kStabilitySavedSystemProfileHash[];
34 extern const char kStabilitySessionEndCompleted[];
35 extern const char kStabilityStatsBuildTime[];
36 extern const char kStabilityStatsVersion[];
37 extern const char kStabilityVersionMismatchCount[];
38
39 } // namespace prefs
40 } // namespace metrics
41
42 #endif // COMPONENTS_METRICS_STABILITY_PREF_NAMES_H_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698