Bug 942367 - WebIDL changes for peerIdentity constraint. r=jst

This commit is contained in:
Martin Thomson 2014-05-01 12:50:00 +02:00
parent cb51970487
commit 988e3eecf0
3 changed files with 5 additions and 0 deletions

View File

@ -18,6 +18,7 @@ dictionary MediaStreamConstraints {
(boolean or MediaTrackConstraints) video = false;
boolean picture = false; // Mozilla legacy
boolean fake = false; // for testing
DOMString? peerIdentity = null;
};
interface MediaStream {

View File

@ -72,6 +72,9 @@ interface PeerConnectionImpl {
readonly attribute PCImplSignalingState signalingState;
readonly attribute PCImplSipccState sipccState;
attribute DOMString peerIdentity;
readonly attribute boolean privacyRequested;
/* Data channels */
[Throws]
DataChannel createDataChannel(DOMString label, DOMString protocol,

View File

@ -15,4 +15,5 @@ dictionary RTCIceServer {
dictionary RTCConfiguration {
sequence<RTCIceServer> iceServers;
DOMString? peerIdentity = null;
};