| Index: webrtc/examples/androidapp/src/org/appspot/apprtc/AppRTCClient.java
|
| diff --git a/webrtc/examples/androidapp/src/org/appspot/apprtc/AppRTCClient.java b/webrtc/examples/androidapp/src/org/appspot/apprtc/AppRTCClient.java
|
| index 195446ab5faf5c12f891de5178b91cc386e3027b..5e91494407860bacd30a17fa236f1c97c5816d1e 100644
|
| --- a/webrtc/examples/androidapp/src/org/appspot/apprtc/AppRTCClient.java
|
| +++ b/webrtc/examples/androidapp/src/org/appspot/apprtc/AppRTCClient.java
|
| @@ -59,6 +59,11 @@ public interface AppRTCClient {
|
| public void sendLocalIceCandidate(final IceCandidate candidate);
|
|
|
| /**
|
| + * Send Removed ICE candidates to the other participant.
|
| + */
|
| + public void sendLocalIceCandidateRemovals(final IceCandidate[] candidates);
|
| +
|
| + /**
|
| * Disconnect from room.
|
| */
|
| public void disconnectFromRoom();
|
| @@ -113,6 +118,11 @@ public interface AppRTCClient {
|
| public void onRemoteIceCandidate(final IceCandidate candidate);
|
|
|
| /**
|
| + * Callback fired once remote Ice candidate removals are received.
|
| + */
|
| + public void onRemoteIceCandidatesRemoved(final IceCandidate[] candidates);
|
| +
|
| + /**
|
| * Callback fired once channel is closed.
|
| */
|
| public void onChannelClose();
|
|
|