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

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: Addressed comments 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..826327dca77ca17ff21931d5f932a545ac831044 100644
--- a/talk/app/webrtc/java/src/org/webrtc/PeerConnection.java
+++ b/talk/app/webrtc/java/src/org/webrtc/PeerConnection.java
@@ -135,6 +135,11 @@ public class PeerConnection {
RSA, ECDSA
}
+ /** Java version of PeerConnectionInterface.ContinuousGathingPolicy */
+ public enum ContinuousGatheringPolicy {
+ GATHERING_ONCE, GATHERING_CONTINUOUSLY
+ }
+
/** Java version of PeerConnectionInterface.RTCConfiguration */
public static class RTCConfiguration {
public IceTransportsType iceTransportsType;
@@ -146,6 +151,7 @@ public class PeerConnection {
public boolean audioJitterBufferFastAccelerate;
public int iceConnectionReceivingTimeout;
public KeyType keyType;
+ public ContinuousGatheringPolicy continuousGatheringPolicy;
public RTCConfiguration(List<IceServer> iceServers) {
iceTransportsType = IceTransportsType.ALL;
@@ -157,6 +163,7 @@ public class PeerConnection {
audioJitterBufferFastAccelerate = false;
iceConnectionReceivingTimeout = -1;
keyType = KeyType.ECDSA;
+ continuousGatheringPolicy = ContinuousGatheringPolicy.GATHERING_ONCE;
}
};

Powered by Google App Engine
This is Rietveld 408576698