summaryrefslogtreecommitdiff
path: root/java/com/android/dialer/logging/contact_lookup_result.proto
diff options
context:
space:
mode:
authorEric Erfanian <erfanian@google.com>2017-06-19 12:40:59 -0700
committerEric Erfanian <erfanian@google.com>2017-06-19 20:00:08 +0000
commitea7890cd5e829ed3f0b5f726561c569690af2030 (patch)
tree235ab5ab9f9215782c29ef350d275fe12e7b2f74 /java/com/android/dialer/logging/contact_lookup_result.proto
parent91ce7d2a476bd04fe525049a37a2f8b2824e9724 (diff)
Update AOSP Dialer source from internal google3 repository at
cl/159428781. Test: make, treehugger This CL updates the AOSP Dialer source with all the changes that have gone into the private google3 repository. This includes all the changes from cl/158012278 (6/05/2017) to cl/159428781 (6/19/2017). This goal of these drops is to keep the AOSP source in sync with the internal google3 repository. Currently these sync are done by hand with very minor modifications to the internal source code. See the Android.mk file for list of modifications. Our current goal is to do frequent drops (daily if possible) and eventually switched to an automated process. Merged-In: Ie60a84b3936efd0ea3d95d7c86bf96d2b1663030 Change-Id: If1fa394df2609f0d38b4f794c83f4db3f1006484
Diffstat (limited to 'java/com/android/dialer/logging/contact_lookup_result.proto')
-rw-r--r--java/com/android/dialer/logging/contact_lookup_result.proto39
1 files changed, 37 insertions, 2 deletions
diff --git a/java/com/android/dialer/logging/contact_lookup_result.proto b/java/com/android/dialer/logging/contact_lookup_result.proto
index c9624aff1..13ea3c8e5 100644
--- a/java/com/android/dialer/logging/contact_lookup_result.proto
+++ b/java/com/android/dialer/logging/contact_lookup_result.proto
@@ -17,10 +17,10 @@ message ContactLookupResult {
// Contact was found in the local database.
LOCAL_CONTACT = 2;
- // Contact was found in Google Dialer's internal phone number cache
+ // DEPRECATED: see subcategories below
LOCAL_CACHE = 3;
- // Contact was found via Google Caller ID
+ // DEPRECATED: see subcategories below
REMOTE = 4;
// Phone number was an emergency phone number
@@ -28,5 +28,40 @@ message ContactLookupResult {
// Phone number was the SIM card's voicemail number
VOICEMAIL = 6;
+
+ // Phone number was identified via the places part of the People API.
+ REMOTE_PLACES = 7;
+
+ // Phone number was identified via the profile part of the People API.
+ REMOTE_PROFILE = 8;
+
+ // Number was found in Dialer's local cache but we don't know how it was
+ // originally identified.
+ LOCAL_CACHE_UNKNOWN = 9;
+
+ // Number was found in Dialer's local cache and was originally identified
+ // as a personal contact.
+ LOCAL_CACHE_DIRECTORY = 10;
+
+ // Number was found in Dialer's local cache and was originally identified
+ // via a custom extended directory.
+ LOCAL_CACHE_EXTENDED = 11;
+
+ // Number was found in Dialer's local cache and was originally identified
+ // via the places part of the People API.
+ LOCAL_CACHE_PLACES = 12;
+
+ // Number was found in Dialer's local cache and was originally identified
+ // via the profile part of the People API.
+ LOCAL_CACHE_PROFILE = 13;
+
+ // Number was found in Dialer's local cache and was originally identified
+ // via Caller Name Presentation (CNAP) information. Calls in this
+ // category would have had ContactLookupResultType NOT_FOUND originally.
+ LOCAL_CACHE_CNAP = 14;
+
+ // Number was found in Dialer's local cache and was originally identified
+ // via Cequint caller ID.
+ LOCAL_CACHE_CEQUINT = 15;
}
}