summaryrefslogtreecommitdiffstats
path: root/dom/presentation/interfaces/nsIPresentationSessionTransportBuilder.idl
diff options
context:
space:
mode:
authorMatt A. Tobin <email@mattatobin.com>2020-02-06 16:03:39 -0500
committerwolfbeast <mcwerewolf@wolfbeast.com>2020-04-14 12:31:16 +0200
commit8c41fcd24048154e3526e506157d337a2ab434e8 (patch)
treecadcee4433f470969e8e14591f6d7d89c1c9f39b /dom/presentation/interfaces/nsIPresentationSessionTransportBuilder.idl
parent27f4e60be80610b4be361f51257a5501852ed795 (diff)
downloadUXP-8c41fcd24048154e3526e506157d337a2ab434e8.tar
UXP-8c41fcd24048154e3526e506157d337a2ab434e8.tar.gz
UXP-8c41fcd24048154e3526e506157d337a2ab434e8.tar.lz
UXP-8c41fcd24048154e3526e506157d337a2ab434e8.tar.xz
UXP-8c41fcd24048154e3526e506157d337a2ab434e8.zip
Issue #1390 - Get rid of the Presentation API
Diffstat (limited to 'dom/presentation/interfaces/nsIPresentationSessionTransportBuilder.idl')
-rw-r--r--dom/presentation/interfaces/nsIPresentationSessionTransportBuilder.idl80
1 files changed, 0 insertions, 80 deletions
diff --git a/dom/presentation/interfaces/nsIPresentationSessionTransportBuilder.idl b/dom/presentation/interfaces/nsIPresentationSessionTransportBuilder.idl
deleted file mode 100644
index 969f37d71..000000000
--- a/dom/presentation/interfaces/nsIPresentationSessionTransportBuilder.idl
+++ /dev/null
@@ -1,80 +0,0 @@
-/* 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/. */
-
-#include "nsISupports.idl"
-
-interface nsIPresentationChannelDescription;
-interface nsISocketTransport;
-interface mozIDOMWindow;
-interface nsIPresentationControlChannel;
-interface nsIPresentationSessionTransport;
-
-[scriptable, uuid(673f6de1-e253-41b8-9be8-b7ff161fa8dc)]
-interface nsIPresentationSessionTransportBuilderListener : nsISupports
-{
- // Should set |transport.callback| in |onSessionTransport|.
- void onSessionTransport(in nsIPresentationSessionTransport transport);
- void onError(in nsresult reason);
-
- void sendOffer(in nsIPresentationChannelDescription offer);
- void sendAnswer(in nsIPresentationChannelDescription answer);
- void sendIceCandidate(in DOMString candidate);
- void close(in nsresult reason);
-};
-
-[scriptable, uuid(2fdbe67d-80f9-48dc-8237-5bef8fa19801)]
-interface nsIPresentationSessionTransportBuilder : nsISupports
-{
-};
-
-/**
- * The constructor for creating a transport builder.
- */
-[scriptable, uuid(706482b2-1b51-4bed-a21d-785a9cfcfac7)]
-interface nsIPresentationTransportBuilderConstructor : nsISupports
-{
- nsIPresentationSessionTransportBuilder createTransportBuilder(in uint8_t type);
-};
-
-/**
- * Builder for TCP session transport
- */
-[scriptable, uuid(cde36d6e-f471-4262-a70d-f932a26b21d9)]
-interface nsIPresentationTCPSessionTransportBuilder : nsIPresentationSessionTransportBuilder
-{
- /**
- * The following creation functions will trigger |listener.onSessionTransport|
- * if the session transport is successfully built, |listener.onError| if some
- * error occurs during building session transport.
- */
- void buildTCPSenderTransport(in nsISocketTransport aTransport,
- in nsIPresentationSessionTransportBuilderListener aListener);
-
- void buildTCPReceiverTransport(in nsIPresentationChannelDescription aDescription,
- in nsIPresentationSessionTransportBuilderListener aListener);
-};
-
-/**
- * Builder for WebRTC data channel session transport
- */
-[scriptable, uuid(8131c4e0-3a8c-4bc1-a92a-8431473d2fe8)]
-interface nsIPresentationDataChannelSessionTransportBuilder : nsIPresentationSessionTransportBuilder
-{
- /**
- * The following creation function will trigger |listener.onSessionTransport|
- * if the session transport is successfully built, |listener.onError| if some
- * error occurs during creating session transport. The |notifyConnected| of
- * |aControlChannel| should be called before calling
- * |buildDataChannelTransport|.
- */
- void buildDataChannelTransport(in uint8_t aRole,
- in mozIDOMWindow aWindow,
- in nsIPresentationSessionTransportBuilderListener aListener);
-
- // Bug 1275150 - Merge TCP builder with the following APIs
- void onOffer(in nsIPresentationChannelDescription offer);
- void onAnswer(in nsIPresentationChannelDescription answer);
- void onIceCandidate(in DOMString candidate);
- void notifyDisconnected(in nsresult reason);
-};