From 034a2b329e469bf6888fbbcf91992f974015c2a8 Mon Sep 17 00:00:00 2001 From: Yorke Lee Date: Mon, 26 Aug 2013 15:46:10 -0700 Subject: Use contacts cache in call log adapter Bug: 10490038 Change-Id: I4c7fc5094f76dfaaa321bc69d595f37bb72f87ad --- .../dialer/service/CachedNumberLookupService.java | 19 +++++++++++++++++++ 1 file changed, 19 insertions(+) create mode 100644 src/com/android/dialer/service/CachedNumberLookupService.java (limited to 'src/com/android/dialer/service') diff --git a/src/com/android/dialer/service/CachedNumberLookupService.java b/src/com/android/dialer/service/CachedNumberLookupService.java new file mode 100644 index 000000000..a08c28564 --- /dev/null +++ b/src/com/android/dialer/service/CachedNumberLookupService.java @@ -0,0 +1,19 @@ +package com.android.dialer.service; + +import android.content.Context; + +import com.android.dialer.calllog.ContactInfo; + +public interface CachedNumberLookupService { + /** + * Perform a lookup using the cached number lookup service to return contact + * information stored in the cache that corresponds to the given number. + * + * @param context Valid context + * @param number Phone number to lookup the cache for + * @return A {@link ContactInfo} containing the contact information if the phone + * number is found in the cache, {@link ContactInfo#EMPTY} if the phone number was + * not found in the cache, and null if there was an error when querying the cache. + */ + public ContactInfo lookupCachedContactFromNumber(Context context, String number); +} -- cgit v1.2.3