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

Unified Diff: third_party/WebKit/Source/modules/peerconnection/RTCConfiguration.idl

Issue 2447033002: Support RTCConfiguration iceTransportPolicy (Closed)
Patch Set: Created 4 years, 2 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: third_party/WebKit/Source/modules/peerconnection/RTCConfiguration.idl
diff --git a/third_party/WebKit/Source/modules/peerconnection/RTCConfiguration.idl b/third_party/WebKit/Source/modules/peerconnection/RTCConfiguration.idl
index 58ebd35b8003e3099b4a0394def77a4767a5e84f..774156069440c4dcd83b81c78dce9c7d7c9528ec 100644
--- a/third_party/WebKit/Source/modules/peerconnection/RTCConfiguration.idl
+++ b/third_party/WebKit/Source/modules/peerconnection/RTCConfiguration.idl
@@ -31,8 +31,11 @@ enum RTCRtcpMuxPolicy {
dictionary RTCConfiguration {
sequence<RTCIceServer> iceServers;
- // TODO(foolip): |iceTransports| should be |iceTransportPolicy|.
- RTCIceTransports iceTransports = "all";
+ // TODO(foolip): |iceTransportPolicy| default should be "all", but it is
+ // omitted to allow fallback to |iceTransports| if not specified.
+ RTCIceTransports iceTransportPolicy;
+ // TODO(foolip): |iceTransports| is not in the spec.
+ RTCIceTransports iceTransports;
RTCBundlePolicy bundlePolicy = "balanced";
// TODO(foolip): |rtcpMuxPolicy| default should be "require".
RTCRtcpMuxPolicy rtcpMuxPolicy;

Powered by Google App Engine
This is Rietveld 408576698