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

  /external/chromium_org/third_party/WebKit/Source/modules/mediastream/
RTCSessionDescription.h 45 class RTCSessionDescription : public RefCounted<RTCSessionDescription>, public ScriptWrappable {
47 static PassRefPtr<RTCSessionDescription> create(const Dictionary&, ExceptionState&);
48 static PassRefPtr<RTCSessionDescription> create(WebKit::WebRTCSessionDescription);
49 virtual ~RTCSessionDescription();
60 explicit RTCSessionDescription(WebKit::WebRTCSessionDescription);
RTCSessionDescription.cpp 33 #include "modules/mediastream/RTCSessionDescription.h"
47 PassRefPtr<RTCSessionDescription> RTCSessionDescription::create(const Dictionary& dictionary, ExceptionState& es)
63 return adoptRef(new RTCSessionDescription(WebKit::WebRTCSessionDescription(type, sdp)));
66 PassRefPtr<RTCSessionDescription> RTCSessionDescription::create(WebKit::WebRTCSessionDescription webSessionDescription)
68 return adoptRef(new RTCSessionDescription(webSessionDescription));
71 RTCSessionDescription::RTCSessionDescription(WebKit::WebRTCSessionDescription webSessionDescription)
77 RTCSessionDescription::~RTCSessionDescription(
    [all...]

Completed in 1726 milliseconds