Mark adhoc conference call APIs as @hide.

Test: make -j update-api
Test: Run unit tests
Bug: 62151032
Change-Id: I8fe9c4d2c9a8861deea3a0def82c432762cd1222
This commit is contained in:
Tyler Gunn
2020-02-11 14:39:43 -08:00
parent 404babbb98
commit 0c62ef09bb
5 changed files with 14 additions and 11 deletions

View File

@@ -378,7 +378,8 @@ public abstract class Connection extends Conferenceable {
/**
* When set, indicates that this {@link Connection} supports initiation of a conference call
* by directly adding a participant using {@link #onAddConferenceParticipants()}.
* by directly adding participants using {@link #onAddConferenceParticipants(List)}.
* @hide
*/
public static final int CAPABILITY_ADD_PARTICIPANT = 0x04000000;
//**********************************************************************************************
@@ -2960,9 +2961,10 @@ public abstract class Connection extends Conferenceable {
public void onSeparate() {}
/**
* Supports initiation of a conference call by directly adding participants.
* Supports initiation of a conference call by directly adding participants to an ongoing call.
*
* @param participants with which conference call will be formed.
* @hide
*/
public void onAddConferenceParticipants(@NonNull List<Uri> participants) {}