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

Unified Diff: talk/app/webrtc/java/src/org/webrtc/PeerConnection.java

Issue 1369773003: Add a continual_gathering_policy in PeerConnection RTCConfiguration (Closed) Base URL: https://chromium.googlesource.com/external/webrtc@master
Patch Set: Created 5 years, 3 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: talk/app/webrtc/java/src/org/webrtc/PeerConnection.java
diff --git a/talk/app/webrtc/java/src/org/webrtc/PeerConnection.java b/talk/app/webrtc/java/src/org/webrtc/PeerConnection.java
index 8730af96c90035f42e767f73e913f5c849ead55d..706e9587634f8e26997efdedc23610b05504efbf 100644
--- a/talk/app/webrtc/java/src/org/webrtc/PeerConnection.java
+++ b/talk/app/webrtc/java/src/org/webrtc/PeerConnection.java
@@ -146,6 +146,7 @@ public class PeerConnection {
public boolean audioJitterBufferFastAccelerate;
public int iceConnectionReceivingTimeout;
public KeyType keyType;
+ public boolean iceContinueGettingPorts;
pthatcher1 2015/09/25 17:37:46 I think we should call this something like "iceGat
pthatcher1 2015/09/25 17:58:36 Actually, ORTC already has a GatherPolicy, which i
honghaiz3 2015/09/25 20:10:20 Done.
public RTCConfiguration(List<IceServer> iceServers) {
iceTransportsType = IceTransportsType.ALL;
@@ -157,6 +158,7 @@ public class PeerConnection {
audioJitterBufferFastAccelerate = false;
iceConnectionReceivingTimeout = -1;
keyType = KeyType.ECDSA;
+ iceContinueGettingPorts = false;
}
};

Powered by Google App Engine
This is Rietveld 408576698