diff options
author | Nancy Chen <nancychen@google.com> | 2014-08-28 17:55:49 +0000 |
---|---|---|
committer | Android (Google) Code Review <android-gerrit@google.com> | 2014-08-28 17:55:50 +0000 |
commit | d1a5a4636847201a5e7812f0069e00526ea1e0a5 (patch) | |
tree | 739eb1de4567c7baded358e76f1fae57ee58a0d0 /core/java/android/provider | |
parent | d3458a9c34b7df3b8b2df1fa66592acf12bc756d (diff) | |
parent | 3a7809212761dcd6e42afe1544a49791d70d140f (diff) | |
download | frameworks_base-d1a5a4636847201a5e7812f0069e00526ea1e0a5.zip frameworks_base-d1a5a4636847201a5e7812f0069e00526ea1e0a5.tar.gz frameworks_base-d1a5a4636847201a5e7812f0069e00526ea1e0a5.tar.bz2 |
Merge "Add field for sub_id in call log for sprout database." into lmp-dev
Diffstat (limited to 'core/java/android/provider')
-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 d9d4398..0202f91 100644 --- a/core/java/android/provider/CallLog.java +++ b/core/java/android/provider/CallLog.java @@ -350,6 +350,15 @@ public class CallLog { public static final String PHONE_ACCOUNT_ID = "subscription_id"; /** + * The identifier of a account that is unique to a specified component. Equivalent value + * to {@link #PHONE_ACCOUNT_ID}. For ContactsProvider internal use only. + * <P>Type: INTEGER</P> + * + * @hide + */ + public static final String SUB_ID = "sub_id"; + + /** * If a successful call is made that is longer than this duration, update the phone number * in the ContactsProvider with the normalized version of the number, based on the user's * current country code. |