mirror of
https://github.com/servo/servo.git
synced 2025-06-06 16:45:39 +00:00
Use draft spec links
This commit is contained in:
parent
7761243100
commit
b7e2e79e53
4 changed files with 18 additions and 18 deletions
|
@ -79,22 +79,22 @@ impl RTCIceCandidate {
|
|||
}
|
||||
|
||||
impl RTCIceCandidateMethods for RTCIceCandidate {
|
||||
/// https://www.w3.org/TR/webrtc/#dom-rtcicecandidate-candidate
|
||||
/// https://w3c.github.io/webrtc-pc/#dom-rtcicecandidate-candidate
|
||||
fn Candidate(&self) -> DOMString {
|
||||
self.candidate.clone()
|
||||
}
|
||||
|
||||
/// https://www.w3.org/TR/webrtc/#dom-rtcicecandidate-sdpmid
|
||||
/// https://w3c.github.io/webrtc-pc/#dom-rtcicecandidate-sdpmid
|
||||
fn GetSdpMid(&self) -> Option<DOMString> {
|
||||
self.sdp_m_id.clone()
|
||||
}
|
||||
|
||||
/// https://www.w3.org/TR/webrtc/#dom-rtcicecandidate-sdpmlineindex
|
||||
/// https://w3c.github.io/webrtc-pc/#dom-rtcicecandidate-sdpmlineindex
|
||||
fn GetSdpMLineIndex(&self) -> Option<u16> {
|
||||
self.sdp_m_line_index.clone()
|
||||
}
|
||||
|
||||
/// https://www.w3.org/TR/webrtc/#dom-rtcicecandidate-usernamefragment
|
||||
/// https://w3c.github.io/webrtc-pc/#dom-rtcicecandidate-usernamefragment
|
||||
fn GetUsernameFragment(&self) -> Option<DOMString> {
|
||||
self.username_fragment.clone()
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue