Bug 1598607 [wpt PR 20399] - Update interfaces/webrtc.idl, a=testonly

Automatic update from web-platform-tests
Update interfaces/webrtc.idl (#20399)

Source: https://github.com/tidoust/reffy-reports/blob/c1cb4f7/ed/idl/webrtc.idl
Build: https://travis-ci.org/tidoust/reffy-reports/builds/615532883
--

wpt-commits: e78550f38e15e88e634f051d6d92e58f56a329aa
wpt-pr: 20399
This commit is contained in:
autofoolip 2019-11-26 11:32:45 +00:00 коммит произвёл moz-wptsync-bot
Родитель 504d0c76b8
Коммит 4545cbdbd4
1 изменённых файлов: 0 добавлений и 8 удалений

Просмотреть файл

@ -15,18 +15,11 @@ dictionary RTCConfiguration {
enum RTCIceCredentialType {
"password",
"oauth"
};
dictionary RTCOAuthCredential {
required DOMString macKey;
required DOMString accessToken;
};
dictionary RTCIceServer {
required (DOMString or sequence<DOMString>) urls;
DOMString username;
(DOMString or RTCOAuthCredential) credential;
RTCIceCredentialType credentialType = "password";
};
@ -319,7 +312,6 @@ dictionary RTCRtpDecodingParameters : RTCRtpCodingParameters {};
dictionary RTCRtpEncodingParameters : RTCRtpCodingParameters {
boolean active = true;
unsigned long maxBitrate;
double maxFramerate;
double scaleResolutionDownBy;
};