diff options
author | Tyler Gunn <tgunn@google.com> | 2018-10-03 15:38:57 -0700 |
---|---|---|
committer | Tyler Gunn <tgunn@google.com> | 2019-01-19 10:27:23 -0800 |
commit | 68a73a4d0d720607ffc47c3d80fb91ebc1171653 (patch) | |
tree | e198a44e68b91691e17c1fd45f714542635f5bba /telecomm/java/android/telecom/RemoteConnectionService.java | |
parent | eb678ba1d38f34a8e28fd51c44640e3b03ab1303 (diff) |
Support for treating single party IMS conference as a standalone call.
Adding @hide APIs which Telephony can use to make a conference call with
a single participant look like its a standalone call.
Test: Manual testing
Bug: 75975913
Change-Id: Id8532234ab295785fc749b120898f43911e12637
Diffstat (limited to 'telecomm/java/android/telecom/RemoteConnectionService.java')
-rw-r--r-- | telecomm/java/android/telecom/RemoteConnectionService.java | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/telecomm/java/android/telecom/RemoteConnectionService.java b/telecomm/java/android/telecom/RemoteConnectionService.java index 9821dcbce85e..744544eb01f1 100644 --- a/telecomm/java/android/telecom/RemoteConnectionService.java +++ b/telecomm/java/android/telecom/RemoteConnectionService.java @@ -471,6 +471,12 @@ final class RemoteConnectionService { public void resetConnectionTime(String callId, Session.Info sessionInfo) { // Do nothing } + + @Override + public void setConferenceState(String callId, boolean isConference, + Session.Info sessionInfo) { + // Do nothing + } }; private final ConnectionServiceAdapterServant mServant = |