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

Side by Side Diff: components/metrics/metrics_pref_names.cc

Issue 2770853002: Create Ukm ReportingService implementation. (Closed)
Patch Set: Also revert datatracker unittest change Created 3 years, 9 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
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 172 matching lines...) Expand 10 before | Expand all | Expand 10 after
183 "user_experience_metrics.stability.version_mismatch_count"; 183 "user_experience_metrics.stability.version_mismatch_count";
184 184
185 // The keys below are strictly increasing counters over the lifetime of 185 // The keys below are strictly increasing counters over the lifetime of
186 // a chrome installation. They are (optionally) sent up to the uninstall 186 // a chrome installation. They are (optionally) sent up to the uninstall
187 // survey in the event of uninstallation. 187 // survey in the event of uninstallation.
188 const char kUninstallLaunchCount[] = "uninstall_metrics.launch_count"; 188 const char kUninstallLaunchCount[] = "uninstall_metrics.launch_count";
189 const char kUninstallMetricsPageLoadCount[] = 189 const char kUninstallMetricsPageLoadCount[] =
190 "uninstall_metrics.page_load_count"; 190 "uninstall_metrics.page_load_count";
191 const char kUninstallMetricsUptimeSec[] = "uninstall_metrics.uptime_sec"; 191 const char kUninstallMetricsUptimeSec[] = "uninstall_metrics.uptime_sec";
192 192
193 // Dictionary for measuring cellular data used by UKM service during last 7
194 // days.
195 const char kUkmCellDataUse[] = "user_experience_metrics.ukm_cell_datause";
196
193 // Dictionary for measuring cellular data used by UMA service during last 7 197 // Dictionary for measuring cellular data used by UMA service during last 7
194 // days. 198 // days.
195 const char kUmaCellDataUse[] = "user_experience_metrics.uma_cell_datause"; 199 const char kUmaCellDataUse[] = "user_experience_metrics.uma_cell_datause";
196 200
197 // Dictionary for measuring cellular data used by user including chrome services 201 // Dictionary for measuring cellular data used by user including chrome services
198 // per day. 202 // per day.
199 const char kUserCellDataUse[] = "user_experience_metrics.user_call_datause"; 203 const char kUserCellDataUse[] = "user_experience_metrics.user_call_datause";
200 204
201 } // namespace prefs 205 } // namespace prefs
202 } // namespace metrics 206 } // namespace metrics
OLDNEW
« no previous file with comments | « components/metrics/metrics_pref_names.h ('k') | components/metrics/metrics_reporting_scheduler.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698