Home | History | Annotate | Download | only in exported

Lines Matching defs:sdp

43     static PassRefPtr<WebRTCSessionDescriptionPrivate> create(const WebString& type, const WebString& sdp);
48 WebString sdp() { return m_sdp; }
49 void setSdp(const WebString& sdp) { m_sdp = sdp; }
52 WebRTCSessionDescriptionPrivate(const WebString& type, const WebString& sdp);
58 PassRefPtr<WebRTCSessionDescriptionPrivate> WebRTCSessionDescriptionPrivate::create(const WebString& type, const WebString& sdp)
60 return adoptRef(new WebRTCSessionDescriptionPrivate(type, sdp));
63 WebRTCSessionDescriptionPrivate::WebRTCSessionDescriptionPrivate(const WebString& type, const WebString& sdp)
65 , m_sdp(sdp)
79 void WebRTCSessionDescription::initialize(const WebString& type, const WebString& sdp)
81 m_private = WebRTCSessionDescriptionPrivate::create(type, sdp);
96 WebString WebRTCSessionDescription::sdp() const
99 return m_private->sdp();
102 void WebRTCSessionDescription::setSDP(const WebString& sdp)
105 return m_private->setSdp(sdp);