summaryrefslogtreecommitdiff
path: root/java/com/android/dialer/phonelookup/phone_lookup_info.proto
diff options
context:
space:
mode:
authorlinyuh <linyuh@google.com>2018-04-24 13:09:55 -0700
committerCopybara-Service <copybara-piper@google.com>2018-04-25 11:44:21 -0700
commit05d17bda619dfdb7a729959dad098c10d67f84c8 (patch)
treee1f12c0266787327ce8bbeebd639e47293a5b349 /java/com/android/dialer/phonelookup/phone_lookup_info.proto
parentda39087e6271733b4a02393521db21d868c31324 (diff)
Add skeleton for CequintPhoneLookup
Bug: 70989584 Test: CequintPhoneLookupTest PiperOrigin-RevId: 194133375 Change-Id: I10fb22c0c92b2d79f4d8287316e7a0373c09a72e
Diffstat (limited to 'java/com/android/dialer/phonelookup/phone_lookup_info.proto')
-rw-r--r--java/com/android/dialer/phonelookup/phone_lookup_info.proto14
1 files changed, 13 insertions, 1 deletions
diff --git a/java/com/android/dialer/phonelookup/phone_lookup_info.proto b/java/com/android/dialer/phonelookup/phone_lookup_info.proto
index 1beff6ca9..50817c4e3 100644
--- a/java/com/android/dialer/phonelookup/phone_lookup_info.proto
+++ b/java/com/android/dialer/phonelookup/phone_lookup_info.proto
@@ -14,7 +14,7 @@ package com.android.dialer.phonelookup;
// "cp2_info_in_default_directory" corresponds to class
// Cp2DefaultDirectoryPhoneLookup, and class Cp2DefaultDirectoryPhoneLookup
// alone is responsible for populating it.
-// Next ID: 8
+// Next ID: 9
message PhoneLookupInfo {
// Information about a PhoneNumber retrieved from CP2.
message Cp2Info {
@@ -163,4 +163,16 @@ message PhoneLookupInfo {
optional string name = 1;
}
optional CnapInfo cnap_info = 7;
+
+ // Information obtained via Cequint
+ // Next ID: 4
+ message CequintInfo {
+ optional string name = 1;
+
+ // Description of the geolocation (e.g., "Mountain View, CA")
+ optional string geolocation = 2;
+
+ optional string photo_uri = 3;
+ }
+ optional CequintInfo cequint_info = 8;
} \ No newline at end of file