From 270f930ce8a5b2c3b088d0864d1643665253fbf4 Mon Sep 17 00:00:00 2001 From: Flavio Lerda Date: Tue, 9 Aug 2011 12:01:13 +0100 Subject: Add geocoded location to call log. Since computing the geocoded location is an expensive operation, add the geocoded location once and for all when inserting in the call log. Bug: 5129581 Change-Id: I6017c993a52b461eed395ce5e5a9373018e2087a --- core/java/android/provider/CallLog.java | 9 +++++++++ 1 file changed, 9 insertions(+) diff --git a/core/java/android/provider/CallLog.java b/core/java/android/provider/CallLog.java index b8ef7be2e1ef..9c6f5c9ac616 100644 --- a/core/java/android/provider/CallLog.java +++ b/core/java/android/provider/CallLog.java @@ -192,6 +192,15 @@ public class CallLog { */ public static final String IS_READ = "is_read"; + /** + * A geocoded location for the number associated with this call. + *

+ * The string represents a city, state, or country associated with the number. + *

Type: TEXT

+ * @hide + */ + public static final String GEOCODED_LOCATION = "geocoded_location"; + /** * Adds a call to the call log. * -- cgit v1.2.3-59-g8ed1b