2013-10-14 20:53:56 +04:00
|
|
|
/* -*- Mode: IDL; tab-width: 2; indent-tabs-mode: nil; c-basic-offset: 2 -*- */
|
|
|
|
/* This Source Code Form is subject to the terms of the Mozilla Public
|
|
|
|
* License, v. 2.0. If a copy of the MPL was not distributed with this file,
|
|
|
|
* You can obtain one at http://mozilla.org/MPL/2.0/.
|
|
|
|
*
|
|
|
|
* PeerConnection.js' interface to the C++ PeerConnectionImpl.
|
|
|
|
*
|
|
|
|
* Do not confuse with mozRTCPeerConnection. This interface is purely for
|
|
|
|
* communication between the PeerConnection JS DOM binding and the C++
|
|
|
|
* implementation in SIPCC.
|
|
|
|
*
|
|
|
|
* See media/webrtc/signaling/include/PeerConnectionImpl.h
|
|
|
|
*
|
|
|
|
*/
|
|
|
|
|
|
|
|
interface nsISupports;
|
|
|
|
|
|
|
|
/* Must be created first. Observer events will be dispatched on the thread provided */
|
|
|
|
[ChromeOnly, Constructor]
|
|
|
|
interface PeerConnectionImpl {
|
|
|
|
/* Must be called first. Observer events dispatched on the thread provided */
|
|
|
|
[Throws]
|
|
|
|
void initialize(PeerConnectionObserver observer, Window window,
|
|
|
|
RTCConfiguration iceServers,
|
|
|
|
nsISupports thread);
|
|
|
|
/* JSEP calls */
|
|
|
|
[Throws]
|
2014-07-10 22:31:25 +04:00
|
|
|
void createOffer(optional RTCOfferOptions options);
|
2013-10-14 20:53:56 +04:00
|
|
|
[Throws]
|
2014-07-10 22:31:25 +04:00
|
|
|
void createAnswer();
|
2013-10-14 20:53:56 +04:00
|
|
|
[Throws]
|
|
|
|
void setLocalDescription(long action, DOMString sdp);
|
|
|
|
[Throws]
|
|
|
|
void setRemoteDescription(long action, DOMString sdp);
|
|
|
|
|
2013-11-25 23:01:03 +04:00
|
|
|
/* Stats call, calls either |onGetStatsSuccess| or |onGetStatsError| on our
|
|
|
|
observer. (see the |PeerConnectionObserver| interface) */
|
2013-10-18 02:00:05 +04:00
|
|
|
[Throws]
|
2014-02-20 21:35:35 +04:00
|
|
|
void getStats(MediaStreamTrack? selector);
|
2013-11-25 23:01:03 +04:00
|
|
|
|
2014-08-14 05:40:54 +04:00
|
|
|
/* Adds the tracks created by GetUserMedia */
|
|
|
|
[Throws]
|
|
|
|
void addTrack(MediaStreamTrack track, MediaStream... streams);
|
|
|
|
[Throws]
|
|
|
|
void removeTrack(MediaStreamTrack track);
|
2013-10-14 20:53:56 +04:00
|
|
|
[Throws]
|
2014-08-15 09:33:09 +04:00
|
|
|
void replaceTrack(MediaStreamTrack thisTrack, MediaStreamTrack withTrack,
|
|
|
|
MediaStream stream);
|
|
|
|
[Throws]
|
2013-10-14 20:53:56 +04:00
|
|
|
void closeStreams();
|
|
|
|
|
|
|
|
sequence<MediaStream> getLocalStreams();
|
|
|
|
sequence<MediaStream> getRemoteStreams();
|
|
|
|
|
|
|
|
/* As the ICE candidates roll in this one should be called each time
|
|
|
|
* in order to keep the candidate list up-to-date for the next SDP-related
|
|
|
|
* call PeerConnectionImpl does not parse ICE candidates, just sticks them
|
|
|
|
* into the SDP.
|
|
|
|
*/
|
|
|
|
[Throws]
|
|
|
|
void addIceCandidate(DOMString candidate, DOMString mid, unsigned short level);
|
|
|
|
|
|
|
|
/* Puts the SIPCC engine back to 'kIdle', shuts down threads, deletes state */
|
|
|
|
void close();
|
|
|
|
|
2014-07-28 19:41:52 +04:00
|
|
|
/* Notify DOM window if this plugin crash is ours. */
|
|
|
|
boolean pluginCrash(unsigned long long pluginId, DOMString name, DOMString pluginDumpID);
|
2014-07-21 11:50:11 +04:00
|
|
|
|
2013-10-14 20:53:56 +04:00
|
|
|
/* Attributes */
|
2014-11-20 03:16:29 +03:00
|
|
|
[Constant]
|
2013-12-05 01:36:00 +04:00
|
|
|
readonly attribute DOMString fingerprint;
|
2013-10-14 20:53:56 +04:00
|
|
|
readonly attribute DOMString localDescription;
|
|
|
|
readonly attribute DOMString remoteDescription;
|
|
|
|
|
2013-11-14 02:53:30 +04:00
|
|
|
readonly attribute PCImplIceConnectionState iceConnectionState;
|
|
|
|
readonly attribute PCImplIceGatheringState iceGatheringState;
|
2013-10-14 20:53:56 +04:00
|
|
|
readonly attribute PCImplSignalingState signalingState;
|
2014-11-20 22:43:02 +03:00
|
|
|
attribute DOMString id;
|
2013-10-14 20:53:56 +04:00
|
|
|
|
2014-05-01 14:50:00 +04:00
|
|
|
attribute DOMString peerIdentity;
|
|
|
|
readonly attribute boolean privacyRequested;
|
|
|
|
|
2013-10-14 20:53:56 +04:00
|
|
|
/* Data channels */
|
|
|
|
[Throws]
|
|
|
|
DataChannel createDataChannel(DOMString label, DOMString protocol,
|
|
|
|
unsigned short type, boolean outOfOrderAllowed,
|
|
|
|
unsigned short maxTime, unsigned short maxNum,
|
|
|
|
boolean externalNegotiated, unsigned short stream);
|
|
|
|
};
|