| OLD | NEW |
| 1 // Copyright 2014 The Chromium Authors. All rights reserved. | 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 | 2 // Use of this source code is governed by a BSD-style license that can be |
| 3 // found in the LICENSE file. | 3 // found in the LICENSE file. |
| 4 | 4 |
| 5 #ifndef COMPONENTS_METRICS_METRICS_PREF_NAMES_H_ | 5 #ifndef COMPONENTS_METRICS_METRICS_PREF_NAMES_H_ |
| 6 #define COMPONENTS_METRICS_METRICS_PREF_NAMES_H_ | 6 #define COMPONENTS_METRICS_METRICS_PREF_NAMES_H_ |
| 7 | 7 |
| 8 namespace metrics { | 8 namespace metrics { |
| 9 namespace prefs { | 9 namespace prefs { |
| 10 | 10 |
| (...skipping 19 matching lines...) Expand all Loading... |
| 30 extern const char kMetricsLastSeenPrefix[]; | 30 extern const char kMetricsLastSeenPrefix[]; |
| 31 extern const char kStabilityBreakpadRegistrationSuccess[]; | 31 extern const char kStabilityBreakpadRegistrationSuccess[]; |
| 32 extern const char kStabilityBreakpadRegistrationFail[]; | 32 extern const char kStabilityBreakpadRegistrationFail[]; |
| 33 extern const char kStabilityChildProcessCrashCount[]; | 33 extern const char kStabilityChildProcessCrashCount[]; |
| 34 extern const char kStabilityCrashCount[]; | 34 extern const char kStabilityCrashCount[]; |
| 35 extern const char kStabilityDebuggerPresent[]; | 35 extern const char kStabilityDebuggerPresent[]; |
| 36 extern const char kStabilityDebuggerNotPresent[]; | 36 extern const char kStabilityDebuggerNotPresent[]; |
| 37 extern const char kStabilityExecutionPhase[]; | 37 extern const char kStabilityExecutionPhase[]; |
| 38 extern const char kStabilityExtensionRendererCrashCount[]; | 38 extern const char kStabilityExtensionRendererCrashCount[]; |
| 39 extern const char kStabilityExtensionRendererFailedLaunchCount[]; | 39 extern const char kStabilityExtensionRendererFailedLaunchCount[]; |
| 40 extern const char kStabilityExtensionRendererLaunchCount[]; |
| 40 extern const char kStabilityExitedCleanly[]; | 41 extern const char kStabilityExitedCleanly[]; |
| 41 extern const char kStabilityIncompleteSessionEndCount[]; | 42 extern const char kStabilityIncompleteSessionEndCount[]; |
| 42 extern const char kStabilityLastTimestampSec[]; | 43 extern const char kStabilityLastTimestampSec[]; |
| 43 extern const char kStabilityLaunchCount[]; | 44 extern const char kStabilityLaunchCount[]; |
| 44 extern const char kStabilityLaunchTimeSec[]; | 45 extern const char kStabilityLaunchTimeSec[]; |
| 45 extern const char kStabilityPageLoadCount[]; | 46 extern const char kStabilityPageLoadCount[]; |
| 46 extern const char kStabilityRendererCrashCount[]; | 47 extern const char kStabilityRendererCrashCount[]; |
| 47 extern const char kStabilityRendererFailedLaunchCount[]; | 48 extern const char kStabilityRendererFailedLaunchCount[]; |
| 48 extern const char kStabilityRendererHangCount[]; | 49 extern const char kStabilityRendererHangCount[]; |
| 50 extern const char kStabilityRendererLaunchCount[]; |
| 49 extern const char kStabilitySavedSystemProfile[]; | 51 extern const char kStabilitySavedSystemProfile[]; |
| 50 extern const char kStabilitySavedSystemProfileHash[]; | 52 extern const char kStabilitySavedSystemProfileHash[]; |
| 51 extern const char kStabilitySessionEndCompleted[]; | 53 extern const char kStabilitySessionEndCompleted[]; |
| 52 extern const char kStabilityStatsBuildTime[]; | 54 extern const char kStabilityStatsBuildTime[]; |
| 53 extern const char kStabilityStatsVersion[]; | 55 extern const char kStabilityStatsVersion[]; |
| 54 extern const char kUninstallLaunchCount[]; | 56 extern const char kUninstallLaunchCount[]; |
| 55 extern const char kUninstallMetricsPageLoadCount[]; | 57 extern const char kUninstallMetricsPageLoadCount[]; |
| 56 extern const char kUninstallMetricsUptimeSec[]; | 58 extern const char kUninstallMetricsUptimeSec[]; |
| 57 | 59 |
| 58 // For measuring data use for throttling UMA log uploads on cellular. | 60 // For measuring data use for throttling UMA log uploads on cellular. |
| 59 extern const char kUmaCellDataUse[]; | 61 extern const char kUmaCellDataUse[]; |
| 60 extern const char kUserCellDataUse[]; | 62 extern const char kUserCellDataUse[]; |
| 61 | 63 |
| 62 } // namespace prefs | 64 } // namespace prefs |
| 63 } // namespace metrics | 65 } // namespace metrics |
| 64 | 66 |
| 65 #endif // COMPONENTS_METRICS_METRICS_PREF_NAMES_H_ | 67 #endif // COMPONENTS_METRICS_METRICS_PREF_NAMES_H_ |
| OLD | NEW |