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

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

Issue 2721163002: Add support for RTCConfiguration.iceCandidatePoolSize. (Closed)
Patch Set: Adding back log statement for test. Created 3 years, 10 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 bbe1b573c019d9638c32498d5076341c661cde68..6418df2457e72e601a64d5a2147fe83618d38607 100644
--- a/third_party/WebKit/Source/modules/peerconnection/RTCConfiguration.idl
+++ b/third_party/WebKit/Source/modules/peerconnection/RTCConfiguration.idl
@@ -41,5 +41,5 @@ dictionary RTCConfiguration {
RTCRtcpMuxPolicy rtcpMuxPolicy = "require";
// TODO(foolip): DOMString peerIdentity;
sequence<RTCCertificate> certificates;
- // TODO(foolip): unsigned short iceCandidatePoolSize = 0;
+ [EnforceRange] unsigned short iceCandidatePoolSize = 0;
foolip 2017/03/02 12:38:30 The spec doesn't use [EnforceRage] for this. If it
Taylor_Brandstetter 2017/03/02 21:57:01 Done: https://github.com/w3c/webrtc-pc/issues/1048
};

Powered by Google App Engine
This is Rietveld 408576698