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

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

Issue 1818613002: Implement UMA log throttling for cellular connections (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: singleton pattern removed Created 4 years, 8 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 151 matching lines...) Expand 10 before | Expand all | Expand 10 after
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 // Dictionary for measuring cellular data used by UMA service during last 7
173 // days.
174 const char kUmaCellDataUse[] = "uma_call_datause";
175
176 // Dictionary for measuring cellular data used by user including chrome services
177 // per day.
178 const char kUserCellDataUse[] = "user_call_datause";
Alexei Svitkine (slow) 2016/03/29 16:29:10 Please prefix these with "user_experience_metrics.
gayane -on leave until 09-2017 2016/03/31 01:38:24 Done.
179
172 } // namespace prefs 180 } // namespace prefs
173 } // namespace metrics 181 } // namespace metrics
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698