HomeSort by relevance Sort by last modified time
    Searched defs:RTCDataChannel (Results 1 - 2 of 2) sorted by null

  /external/chromium_org/third_party/WebKit/Source/modules/mediastream/
RTCDataChannel.h 45 class RTCDataChannel : public RefCounted<RTCDataChannel>, public ScriptWrappable, public EventTargetWithInlineData, public RTCDataChannelHandlerClient {
46 REFCOUNTED_EVENT_TARGET(RTCDataChannel);
48 static PassRefPtr<RTCDataChannel> create(ExecutionContext*, PassOwnPtr<RTCDataChannelHandler>);
49 static PassRefPtr<RTCDataChannel> create(ExecutionContext*, RTCPeerConnectionHandler*, const String& label, const blink::WebRTCDataChannelInit&, ExceptionState&);
50 ~RTCDataChannel();
88 RTCDataChannel(ExecutionContext*, PassOwnPtr<RTCDataChannelHandler>);
91 void scheduledEventTimerFired(Timer<RTCDataChannel>*);
112 Timer<RTCDataChannel> m_scheduledEventTimer;
RTCDataChannel.cpp 26 #include "modules/mediastream/RTCDataChannel.h"
43 exceptionState.throwDOMException(InvalidStateError, "RTCDataChannel.readyState is not 'open'");
56 PassRefPtr<RTCDataChannel> RTCDataChannel::create(ExecutionContext* context, PassOwnPtr<RTCDataChannelHandler> handler)
59 return adoptRef(new RTCDataChannel(context, handler));
62 PassRefPtr<RTCDataChannel> RTCDataChannel::create(ExecutionContext* context, RTCPeerConnectionHandler* peerConnectionHandler, const String& label, const blink::WebRTCDataChannelInit& init, ExceptionState& exceptionState)
66 exceptionState.throwDOMException(NotSupportedError, "RTCDataChannel is not supported");
69 return adoptRef(new RTCDataChannel(context, handler.release()));
72 RTCDataChannel::RTCDataChannel(ExecutionContext* context, PassOwnPtr<RTCDataChannelHandler> handler
    [all...]

Completed in 23 milliseconds