Add RTCPeerConnection::SetRemoteDescription

This commit is contained in:
Manish Goregaokar 2019-01-27 09:10:39 -08:00
parent 95cd67cb65
commit 93a359e528
2 changed files with 43 additions and 2 deletions

View file

@ -13,8 +13,8 @@ interface RTCPeerConnection : EventTarget {
readonly attribute RTCSessionDescription? localDescription;
// readonly attribute RTCSessionDescription? currentLocalDescription;
// readonly attribute RTCSessionDescription? pendingLocalDescription;
// Promise<void> setRemoteDescription(RTCSessionDescriptionInit description);
// readonly attribute RTCSessionDescription? remoteDescription;
Promise<void> setRemoteDescription(RTCSessionDescriptionInit description);
readonly attribute RTCSessionDescription? remoteDescription;
// readonly attribute RTCSessionDescription? currentRemoteDescription;
// readonly attribute RTCSessionDescription? pendingRemoteDescription;
Promise<void> addIceCandidate(optional RTCIceCandidateInit candidate);