Add Verstat fields to Telecom call/connection classes.

Test: Added new CTS tests to verify operation.
Bug: 135929421
Change-Id: I42360dad677060e03ecec865f31145b1760cf46a
This commit is contained in:
Tyler Gunn
2019-09-24 14:53:23 -07:00
parent 49af39e751
commit d57d76c371
6 changed files with 119 additions and 14 deletions

View File

@@ -1621,7 +1621,8 @@ public abstract class ConnectionService extends Service {
connection.getStatusHints(),
connection.getDisconnectCause(),
createIdList(connection.getConferenceables()),
connection.getExtras()));
connection.getExtras(),
connection.getCallerNumberVerificationStatus()));
if (isIncoming && request.shouldShowIncomingCallUi() && isSelfManaged) {
// Tell ConnectionService to show its incoming call UX.
@@ -2156,7 +2157,8 @@ public abstract class ConnectionService extends Service {
emptyList,
connection.getExtras(),
conferenceId,
connection.getCallDirection());
connection.getCallDirection(),
Connection.VERIFICATION_STATUS_NOT_VERIFIED);
mAdapter.addExistingConnection(id, parcelableConnection);
}
}