| 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;
|
|
|