Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(364)

Unified Diff: webrtc/examples/androidapp/src/org/appspot/apprtc/AppRTCClient.java

Issue 1648813004: Remove candidates when doing continual gathering (Closed) Base URL: https://chromium.googlesource.com/external/webrtc@master
Patch Set: Address Alex's comments Created 4 years, 9 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
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..f9cb67bd02a01ad25e7b743cec910c3cc96239eb 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();
« no previous file with comments | « webrtc/api/webrtcsession_unittest.cc ('k') | webrtc/examples/androidapp/src/org/appspot/apprtc/CallActivity.java » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698