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

Unified Diff: chrome/android/java/src/org/chromium/chrome/browser/omnibox/geo/GeolocationHeader.java

Issue 2620633003: Add missing "." in Geolocation.Header.LocationAge* histograms. (Closed)
Patch Set: Created 3 years, 11 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: chrome/android/java/src/org/chromium/chrome/browser/omnibox/geo/GeolocationHeader.java
diff --git a/chrome/android/java/src/org/chromium/chrome/browser/omnibox/geo/GeolocationHeader.java b/chrome/android/java/src/org/chromium/chrome/browser/omnibox/geo/GeolocationHeader.java
index b12d0eccf2f210d2279fa21709aeb698c01cf99a..f8d083dacfc9118e1d54e9b612affc49027de242 100644
--- a/chrome/android/java/src/org/chromium/chrome/browser/omnibox/geo/GeolocationHeader.java
+++ b/chrome/android/java/src/org/chromium/chrome/browser/omnibox/geo/GeolocationHeader.java
@@ -618,11 +618,11 @@ public class GeolocationHeader {
private static void recordLocationAgeHistogram(int locationSource, long durationMillis) {
String name = "";
if (locationSource == LOCATION_SOURCE_HIGH_ACCURACY) {
- name = "Geolocation.Header.LocationAgeHighAccuracy";
+ name = "Geolocation.Header.LocationAge.HighAccuracy";
} else if (locationSource == LOCATION_SOURCE_GPS_ONLY) {
- name = "Geolocation.Header.LocationAgeGpsOnly";
+ name = "Geolocation.Header.LocationAge.GpsOnly";
} else if (locationSource == LOCATION_SOURCE_BATTERY_SAVING) {
- name = "Geolocation.Header.LocationAgeBatterySaving";
+ name = "Geolocation.Header.LocationAge.BatterySaving";
} else {
Log.e(TAG, "Unexpected locationSource: " + locationSource);
assert false : "Unexpected locationSource: " + locationSource;
« 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