| 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 35 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 46 extern const char kStabilityRendererFailedLaunchCount[]; | 46 extern const char kStabilityRendererFailedLaunchCount[]; |
| 47 extern const char kStabilityRendererHangCount[]; | 47 extern const char kStabilityRendererHangCount[]; |
| 48 extern const char kStabilitySavedSystemProfile[]; | 48 extern const char kStabilitySavedSystemProfile[]; |
| 49 extern const char kStabilitySavedSystemProfileHash[]; | 49 extern const char kStabilitySavedSystemProfileHash[]; |
| 50 extern const char kStabilitySessionEndCompleted[]; | 50 extern const char kStabilitySessionEndCompleted[]; |
| 51 extern const char kStabilityStatsBuildTime[]; | 51 extern const char kStabilityStatsBuildTime[]; |
| 52 extern const char kStabilityStatsVersion[]; | 52 extern const char kStabilityStatsVersion[]; |
| 53 extern const char kUninstallLaunchCount[]; | 53 extern const char kUninstallLaunchCount[]; |
| 54 extern const char kUninstallMetricsPageLoadCount[]; | 54 extern const char kUninstallMetricsPageLoadCount[]; |
| 55 extern const char kUninstallMetricsUptimeSec[]; | 55 extern const char kUninstallMetricsUptimeSec[]; |
| 56 |
| 57 // For measuring data use for throttling UMA log uploads on cellular. |
| 58 extern const char kUmaCellDataUse[]; |
| 59 extern const char kUserCellDataUse[]; |
| 60 |
| 56 } // namespace prefs | 61 } // namespace prefs |
| 57 } // namespace metrics | 62 } // namespace metrics |
| 58 | 63 |
| 59 #endif // COMPONENTS_METRICS_METRICS_PREF_NAMES_H_ | 64 #endif // COMPONENTS_METRICS_METRICS_PREF_NAMES_H_ |
| OLD | NEW |