diff options
| author | 2011-08-09 14:22:10 -0700 | |
|---|---|---|
| committer | 2011-08-09 14:22:10 -0700 | |
| commit | af61fd0fd46425a7ce80de4312880e3bbfe3ca81 (patch) | |
| tree | f89f12fc8399c73f662034809aa6075eccceeb46 | |
| parent | 9ce7c0971d1a7f6984f0097fad13f7f827556a3c (diff) | |
| parent | 270f930ce8a5b2c3b088d0864d1643665253fbf4 (diff) | |
Merge "Add geocoded location to call log."
| -rw-r--r-- | core/java/android/provider/CallLog.java | 9 |
1 files changed, 9 insertions, 0 deletions
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 @@ -193,6 +193,15 @@ public class CallLog { public static final String IS_READ = "is_read"; /** + * A geocoded location for the number associated with this call. + * <p> + * The string represents a city, state, or country associated with the number. + * <P>Type: TEXT</P> + * @hide + */ + public static final String GEOCODED_LOCATION = "geocoded_location"; + + /** * Adds a call to the call log. * * @param ci the CallerInfo object to get the target contact from. Can be null |