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

Unified Diff: content/browser/geolocation/network_location_request.cc

Issue 44343002: Geolocation: expand number of buckets for wifi access points in histogram. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 7 years, 2 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 side-by-side diff with in-line comments
Download patch
« no previous file with comments | « no previous file | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: content/browser/geolocation/network_location_request.cc
diff --git a/content/browser/geolocation/network_location_request.cc b/content/browser/geolocation/network_location_request.cc
index 41f3cea1fbf030db36612b352b5b379a2ec21962..2e269b38a6b45e3320234c8929001131255ecf20 100644
--- a/content/browser/geolocation/network_location_request.cc
+++ b/content/browser/geolocation/network_location_request.cc
@@ -60,8 +60,8 @@ void RecordUmaResponseCode(int code) {
void RecordUmaAccessPoints(int count) {
const int min = 0;
- const int max = 10;
- const int buckets = 11;
+ const int max = 20;
+ const int buckets = 21;
timvolodine 2013/10/25 13:45:54 maybe add in the description why you are doing thi
Michael van Ouwerkerk 2013/10/25 13:49:46 Done.
UMA_HISTOGRAM_CUSTOM_COUNTS("Geolocation.NetworkLocationRequest.AccessPoints",
count, min, max, buckets);
}
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698