diff options
author | Bai Tao <michaelbai@google.com> | 2010-08-31 09:59:13 +0800 |
---|---|---|
committer | Bai Tao <michaelbai@google.com> | 2010-08-31 09:59:13 +0800 |
commit | 224744cc72aa7799fb3e5c505123d09d64d4e0c4 (patch) | |
tree | e2b504e0643706e7922fbcfe8239e6143605da5b /core/java/android/provider/CallLog.java | |
parent | e30e1ff8bce5bc74555d34fc13d00c548c1ca24e (diff) | |
download | frameworks_base-224744cc72aa7799fb3e5c505123d09d64d4e0c4.zip frameworks_base-224744cc72aa7799fb3e5c505123d09d64d4e0c4.tar.gz frameworks_base-224744cc72aa7799fb3e5c505123d09d64d4e0c4.tar.bz2 |
Store the current country in call log
Change-Id: Ia68f8e0280b89d5993abb2701a3c425a147b51ba
Diffstat (limited to 'core/java/android/provider/CallLog.java')
-rw-r--r-- | core/java/android/provider/CallLog.java | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/core/java/android/provider/CallLog.java b/core/java/android/provider/CallLog.java index d52632b..bf051f5 100644 --- a/core/java/android/provider/CallLog.java +++ b/core/java/android/provider/CallLog.java @@ -88,6 +88,17 @@ public class CallLog { public static final String NUMBER = "number"; /** + * The ISO 3166-1 two letters country code of the country where the + * user received or made the call. + * <P> + * Type: TEXT + * </P> + * + * @hide + */ + public static final String COUNTRY_ISO = "countryiso"; + + /** * The date the call occured, in milliseconds since the epoch * <P>Type: INTEGER (long)</P> */ |