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

Unified Diff: tools/metrics/histograms/histograms.xml

Issue 2624843003: Add support for cellular geolocation (Closed)
Patch Set: Update device tests to use correct dict key Created 3 years, 10 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:
Download patch
« no previous file with comments | « device/geolocation/wifi_data_provider_chromeos_unittest.cc ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: tools/metrics/histograms/histograms.xml
diff --git a/tools/metrics/histograms/histograms.xml b/tools/metrics/histograms/histograms.xml
index 988cba66e31d5b6cc8570ad76b901902ab3f4564..b2eaa717b4de0afe9fc749d5232c44338bb239c2 100644
--- a/tools/metrics/histograms/histograms.xml
+++ b/tools/metrics/histograms/histograms.xml
@@ -63208,6 +63208,15 @@ http://cs/file:chrome/histograms.xml - but prefer this file for new entries.
<summary>Events in reqests processing of IP-based SimpleGeolocation.</summary>
</histogram>
+<histogram name="SimpleGeolocation.Request.HasCellTowers"
+ enum="SimpleGeolocationRequestHasCellTowers">
+ <owner>skylarc@chromium.org</owner>
+ <summary>
+ This boolean histogram counts SimpleGeolocationRequests carrying a nonzero
+ number of cell towers.
+ </summary>
+</histogram>
+
<histogram name="SimpleGeolocation.Request.HasWiFiAccessPoints"
enum="SimpleGeolocationRequestHasWiFiAccessPoints">
<owner>alemate@chromium.org</owner>
@@ -105897,6 +105906,11 @@ value.
<int value="4" label="Response malformed"/>
</enum>
+<enum name="SimpleGeolocationRequestHasCellTowers" type="int">
+ <int value="0" label="No cell tower data in request."/>
+ <int value="1" label="Cell tower data present."/>
+</enum>
+
<enum name="SimpleGeolocationRequestHasWiFiAccessPoints" type="int">
<int value="0" label="No WiFi data in request."/>
<int value="1" label="WiFi data present."/>
« no previous file with comments | « device/geolocation/wifi_data_provider_chromeos_unittest.cc ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698