| 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 #include "components/metrics/metrics_pref_names.h" | 5 #include "components/metrics/metrics_pref_names.h" |
| 6 | 6 |
| 7 namespace metrics { | 7 namespace metrics { |
| 8 namespace prefs { | 8 namespace prefs { |
| 9 | 9 |
| 10 // Set once, to the current epoch time, on the first run of chrome on this | 10 // Set once, to the current epoch time, on the first run of chrome on this |
| (...skipping 151 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 162 "user_experience_metrics.stability.stats_version"; | 162 "user_experience_metrics.stability.stats_version"; |
| 163 | 163 |
| 164 // The keys below are strictly increasing counters over the lifetime of | 164 // The keys below are strictly increasing counters over the lifetime of |
| 165 // a chrome installation. They are (optionally) sent up to the uninstall | 165 // a chrome installation. They are (optionally) sent up to the uninstall |
| 166 // survey in the event of uninstallation. | 166 // survey in the event of uninstallation. |
| 167 const char kUninstallLaunchCount[] = "uninstall_metrics.launch_count"; | 167 const char kUninstallLaunchCount[] = "uninstall_metrics.launch_count"; |
| 168 const char kUninstallMetricsPageLoadCount[] = | 168 const char kUninstallMetricsPageLoadCount[] = |
| 169 "uninstall_metrics.page_load_count"; | 169 "uninstall_metrics.page_load_count"; |
| 170 const char kUninstallMetricsUptimeSec[] = "uninstall_metrics.uptime_sec"; | 170 const char kUninstallMetricsUptimeSec[] = "uninstall_metrics.uptime_sec"; |
| 171 | 171 |
| 172 // TODO |
| 173 const char kUserCellDataUse[] = "user_call_datause"; |
| 174 const char kUmaCellDataUse[] = "uma_call_datause"; |
| 172 } // namespace prefs | 175 } // namespace prefs |
| 173 } // namespace metrics | 176 } // namespace metrics |
| OLD | NEW |