mirror of
https://gitlab.winehq.org/wine/wine-gecko.git
synced 2024-09-13 09:24:08 -07:00
Bug 1119513 - Change histogram from linear to exp. and buckets from 200 to 50. r=hannosch
This commit is contained in:
parent
317a6683cf
commit
af68bdef1d
@ -1258,7 +1258,7 @@ Geolocation::Update(nsIDOMGeoPosition *aSomewhere)
|
||||
if (coords) {
|
||||
double accuracy = -1;
|
||||
coords->GetAccuracy(&accuracy);
|
||||
mozilla::Telemetry::Accumulate(mozilla::Telemetry::GEOLOCATION_ACCURACY, accuracy);
|
||||
mozilla::Telemetry::Accumulate(mozilla::Telemetry::GEOLOCATION_ACCURACY_EXPONENTIAL, accuracy);
|
||||
}
|
||||
}
|
||||
|
||||
|
@ -313,11 +313,11 @@
|
||||
"n_buckets": 50,
|
||||
"description": "Time spent sweeping slowest compartment SCC (ms)"
|
||||
},
|
||||
"GEOLOCATION_ACCURACY": {
|
||||
"GEOLOCATION_ACCURACY_EXPONENTIAL": {
|
||||
"expires_in_version": "default",
|
||||
"kind": "linear",
|
||||
"high": "18000",
|
||||
"n_buckets": 200,
|
||||
"kind": "exponential",
|
||||
"high": "100000",
|
||||
"n_buckets": 50,
|
||||
"description": "Location accuracy"
|
||||
},
|
||||
"GEOLOCATION_ERROR": {
|
||||
|
Loading…
Reference in New Issue
Block a user