summaryrefslogtreecommitdiff
path: root/src/com/android/dialer/service
diff options
context:
space:
mode:
Diffstat (limited to 'src/com/android/dialer/service')
-rw-r--r--src/com/android/dialer/service/CachedNumberLookupService.java19
1 files changed, 19 insertions, 0 deletions
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);
+}