diff options
author | Makoto Onuki <omakoto@google.com> | 2015-03-10 17:49:30 +0000 |
---|---|---|
committer | Android (Google) Code Review <android-gerrit@google.com> | 2015-03-10 17:49:32 +0000 |
commit | d5800c06827fa051d66adcbbc90bfb459e4f2755 (patch) | |
tree | fde24442ac839a9dc87b255398cee9f408ad3c43 /core | |
parent | 2070646fafc11eaefc0e01843db38329f1efc816 (diff) | |
parent | edb8450b567cd7ae9f13255960b46f155865b163 (diff) | |
download | frameworks_base-d5800c06827fa051d66adcbbc90bfb459e4f2755.zip frameworks_base-d5800c06827fa051d66adcbbc90bfb459e4f2755.tar.gz frameworks_base-d5800c06827fa051d66adcbbc90bfb459e4f2755.tar.bz2 |
Merge "Cache photo URI too in calllog (contract)"
Diffstat (limited to 'core')
-rw-r--r-- | core/java/android/provider/CallLog.java | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/core/java/android/provider/CallLog.java b/core/java/android/provider/CallLog.java index 2df9dbf..6517f35 100644 --- a/core/java/android/provider/CallLog.java +++ b/core/java/android/provider/CallLog.java @@ -328,6 +328,14 @@ public class CallLog { public static final String CACHED_PHOTO_ID = "photo_id"; /** + * The cached photo URI of the picture associated with the phone number, if it exists. + * This value may not be current if the contact information associated with this number + * has changed. + * <P>Type: TEXT (URI)</P> + */ + public static final String CACHED_PHOTO_URI = "photo_uri"; + + /** * The cached phone number, formatted with formatting rules based on the country the * user was in when the call was made or received. * This value is not guaranteed to be present, and may not be current if the contact |