diff options
author | Josh Matthews <josh@joshmatthews.net> | 2020-03-06 00:06:15 -0500 |
---|---|---|
committer | Josh Matthews <josh@joshmatthews.net> | 2020-03-06 00:06:15 -0500 |
commit | a29f4a9afee9c67c45aaf0011ce2c5eb7007ed35 (patch) | |
tree | dbc871edee1d4586e2fcb113c103b9657b5fbed6 /components/script/dom/rtcpeerconnection.rs | |
parent | ea8aed1ba927012d992a3d3c9880858e0282f5f9 (diff) | |
download | servo-a29f4a9afee9c67c45aaf0011ce2c5eb7007ed35.tar.gz servo-a29f4a9afee9c67c45aaf0011ce2c5eb7007ed35.zip |
Revert "Auto merge of #25898 - jdm:rustup, r=asajeffrey"
This reverts commit ea8aed1ba927012d992a3d3c9880858e0282f5f9, reversing
changes made to 3749eb53971b688b855d6b1850f41b4c346cd2da.
Diffstat (limited to 'components/script/dom/rtcpeerconnection.rs')
-rw-r--r-- | components/script/dom/rtcpeerconnection.rs | 16 |
1 files changed, 8 insertions, 8 deletions
diff --git a/components/script/dom/rtcpeerconnection.rs b/components/script/dom/rtcpeerconnection.rs index e6b45d93676..ae246cae5b4 100644 --- a/components/script/dom/rtcpeerconnection.rs +++ b/components/script/dom/rtcpeerconnection.rs @@ -55,8 +55,8 @@ pub struct RTCPeerConnection { #[ignore_malloc_size_of = "defined in servo-media"] controller: DomRefCell<Option<WebRtcController>>, closed: Cell<bool>, - // Helps track state changes between the time createOffer/createAnswer - // is called and resolved + /// Helps track state changes between the time createOffer/createAnswer + /// is called and resolved offer_answer_generation: Cell<u32>, #[ignore_malloc_size_of = "promises are hard"] offer_promises: DomRefCell<Vec<Rc<Promise>>>, @@ -419,34 +419,34 @@ impl RTCPeerConnection { } impl RTCPeerConnectionMethods for RTCPeerConnection { - // https://w3c.github.io/webrtc-pc/#dom-rtcpeerconnection-icecandidate + /// https://w3c.github.io/webrtc-pc/#dom-rtcpeerconnection-icecandidate event_handler!(icecandidate, GetOnicecandidate, SetOnicecandidate); - // https://www.w3.org/TR/webrtc/#dom-rtcpeerconnection-ontrack + /// https://www.w3.org/TR/webrtc/#dom-rtcpeerconnection-ontrack event_handler!(track, GetOntrack, SetOntrack); - // https://w3c.github.io/webrtc-pc/#dom-rtcpeerconnection-iceconnectionstatechange + /// https://w3c.github.io/webrtc-pc/#dom-rtcpeerconnection-iceconnectionstatechange event_handler!( iceconnectionstatechange, GetOniceconnectionstatechange, SetOniceconnectionstatechange ); - // https://w3c.github.io/webrtc-pc/#dom-rtcpeerconnection-icegatheringstatechange + /// https://w3c.github.io/webrtc-pc/#dom-rtcpeerconnection-icegatheringstatechange event_handler!( icegatheringstatechange, GetOnicegatheringstatechange, SetOnicegatheringstatechange ); - // https://w3c.github.io/webrtc-pc/#dom-rtcpeerconnection-onnegotiationneeded + /// https://w3c.github.io/webrtc-pc/#dom-rtcpeerconnection-onnegotiationneeded event_handler!( negotiationneeded, GetOnnegotiationneeded, SetOnnegotiationneeded ); - // https://w3c.github.io/webrtc-pc/#dom-rtcpeerconnection-signalingstatechange + /// https://w3c.github.io/webrtc-pc/#dom-rtcpeerconnection-signalingstatechange event_handler!( signalingstatechange, GetOnsignalingstatechange, |