summaryrefslogtreecommitdiff
path: root/java/com/android/dialer/calldetails/proto
diff options
context:
space:
mode:
authorwangqi <wangqi@google.com>2018-04-17 14:48:03 -0700
committerCopybara-Service <copybara-piper@google.com>2018-04-17 15:55:51 -0700
commite00bbaeceb399da24f06c8f1a626cbbf07eab4ad (patch)
tree2f18f4411d650f4a162d03da62936e05bdaa088f /java/com/android/dialer/calldetails/proto
parent9a14f6a71206add856193cd90971d94c39f079fa (diff)
Add RTT transcript screen.
Bug: 67596257 Test: CallDetailsCursorLoaderTest PiperOrigin-RevId: 193259769 Change-Id: I8c6a8eb9a6bf06e9c1c25c45fc035f8db8ae5a65
Diffstat (limited to 'java/com/android/dialer/calldetails/proto')
-rw-r--r--java/com/android/dialer/calldetails/proto/call_details_entries.proto8
1 files changed, 8 insertions, 0 deletions
diff --git a/java/com/android/dialer/calldetails/proto/call_details_entries.proto b/java/com/android/dialer/calldetails/proto/call_details_entries.proto
index e0202cda1..0f11b537e 100644
--- a/java/com/android/dialer/calldetails/proto/call_details_entries.proto
+++ b/java/com/android/dialer/calldetails/proto/call_details_entries.proto
@@ -20,6 +20,14 @@ message CallDetailsEntries {
repeated enrichedcall.historyquery.proto.HistoryResult history_results = 7;
optional bool is_duo_call = 8;
optional bool has_rtt_transcript = 9;
+ // A unique ID that could be used to map a call log entry to a {@link
+ // android.telecom.Call}. This is different from call_id which is id of call
+ // log entry.
+ // On pre-Q this will be {@link android.provider.CallLog.Calls#DATE} which
+ // is same as {@link com.android.telecom.Call#getCreationTimeMillis()}.
+ // Starting from Q this will be a call UUID generated by system to associate
+ // a call log to a telecom call.
+ optional string call_mapping_id = 10;
}
repeated CallDetailsEntry entries = 1;