diff options
author | Fernando Jiménez Moreno <ferjmoreno@gmail.com> | 2020-06-02 10:52:34 +0200 |
---|---|---|
committer | Fernando Jiménez Moreno <ferjmoreno@gmail.com> | 2020-06-29 16:53:48 +0200 |
commit | 960b010d300503befa9c4469d0ee055908dba923 (patch) | |
tree | cd11aac33145d0b59b0e95a5407212422874918c /components/script/dom/webidls | |
parent | ace0d7795ec3e9ad1bdadfd1894aacbd0d3676d8 (diff) | |
download | servo-960b010d300503befa9c4469d0ee055908dba923.tar.gz servo-960b010d300503befa9c4469d0ee055908dba923.zip |
Cleanups and tidy fixes
Diffstat (limited to 'components/script/dom/webidls')
4 files changed, 11 insertions, 11 deletions
diff --git a/components/script/dom/webidls/RTCDataChannel.webidl b/components/script/dom/webidls/RTCDataChannel.webidl index e8a08969e55..910353dbbd3 100644 --- a/components/script/dom/webidls/RTCDataChannel.webidl +++ b/components/script/dom/webidls/RTCDataChannel.webidl @@ -2,7 +2,7 @@ * License, v. 2.0. If a copy of the MPL was not distributed with this * file, You can obtain one at https://mozilla.org/MPL/2.0/. */ - // https://www.w3.org/TR/webrtc/#dom-rtcdatachannel +// https://w3c.github.io/webrtc-pc/#dom-rtcdatachannel [Exposed=Window] interface RTCDataChannel : EventTarget { @@ -25,9 +25,9 @@ interface RTCDataChannel : EventTarget { attribute EventHandler onmessage; //attribute DOMString binaryType; void send(USVString data); - void send(Blob data); - void send(ArrayBuffer data); - void send(ArrayBufferView data); + //void send(Blob data); + //void send(ArrayBuffer data); + //void send(ArrayBufferView data); }; // https://www.w3.org/TR/webrtc/#dom-rtcdatachannelinit @@ -46,4 +46,4 @@ enum RTCDataChannelState { "open", "closing", "closed" -};
\ No newline at end of file +}; diff --git a/components/script/dom/webidls/RTCDataChannelEvent.webidl b/components/script/dom/webidls/RTCDataChannelEvent.webidl index 5b1cde9e723..081ab15db25 100644 --- a/components/script/dom/webidls/RTCDataChannelEvent.webidl +++ b/components/script/dom/webidls/RTCDataChannelEvent.webidl @@ -2,7 +2,7 @@ * License, v. 2.0. If a copy of the MPL was not distributed with this * file, You can obtain one at https://mozilla.org/MPL/2.0/. */ - // https://www.w3.org/TR/webrtc/#rtcdatachannelevent +// https://w3c.github.io/webrtc-pc/#dom-rtcdatachannelevent [Exposed=Window] interface RTCDataChannelEvent : Event { @@ -12,4 +12,4 @@ interface RTCDataChannelEvent : Event { dictionary RTCDataChannelEventInit : EventInit { required RTCDataChannel channel; -};
\ No newline at end of file +}; diff --git a/components/script/dom/webidls/RTCError.webidl b/components/script/dom/webidls/RTCError.webidl index 01929f0af5a..f398c450905 100644 --- a/components/script/dom/webidls/RTCError.webidl +++ b/components/script/dom/webidls/RTCError.webidl @@ -2,7 +2,7 @@ * License, v. 2.0. If a copy of the MPL was not distributed with this * file, You can obtain one at https://mozilla.org/MPL/2.0/. */ -// https://www.w3.org/TR/webrtc/#dom-rtcerror +// https://w3c.github.io/webrtc-pc/#dom-rtcerror [Exposed=Window] interface RTCError : DOMException { @@ -32,4 +32,4 @@ enum RTCErrorDetailType { "sdp-syntax-error", "hardware-encoder-not-available", "hardware-encoder-error" -};
\ No newline at end of file +}; diff --git a/components/script/dom/webidls/RTCErrorEvent.webidl b/components/script/dom/webidls/RTCErrorEvent.webidl index 1f215d39374..9433fc6f579 100644 --- a/components/script/dom/webidls/RTCErrorEvent.webidl +++ b/components/script/dom/webidls/RTCErrorEvent.webidl @@ -2,7 +2,7 @@ * License, v. 2.0. If a copy of the MPL was not distributed with this * file, You can obtain one at https://mozilla.org/MPL/2.0/. */ - // https://www.w3.org/TR/webrtc/#rtcerrorevent-interface +// https://w3c.github.io/webrtc-pc/#dom-rtcerrorevent [Exposed=Window] interface RTCErrorEvent : Event { @@ -12,4 +12,4 @@ interface RTCErrorEvent : Event { dictionary RTCErrorEventInit : EventInit { required RTCError error; -};
\ No newline at end of file +}; |