Home
last modified time | relevance | path

Searched refs:remoteDescription (Results 1 – 13 of 13) sorted by relevance

/external/chromium_org/third_party/WebKit/public/platform/
DWebRTCPeerConnectionHandler.h64 virtual WebRTCSessionDescription remoteDescription() = 0;
/external/chromium_org/third_party/libjingle/source/talk/app/webrtc/objc/public/
DRTCPeerConnection.h57 @property(nonatomic, assign, readonly) RTCSessionDescription *remoteDescription;
/external/chromium_org/content/shell/renderer/test_runner/
Dmock_webrtc_peer_connection_handler.h51 virtual blink::WebRTCSessionDescription remoteDescription() OVERRIDE;
Dmock_webrtc_peer_connection_handler.cc239 WebRTCSessionDescription MockWebRTCPeerConnectionHandler::remoteDescription() { in remoteDescription() function in content::MockWebRTCPeerConnectionHandler
/external/chromium_org/third_party/WebKit/Source/modules/mediastream/
DRTCPeerConnection.h78 RTCSessionDescription* remoteDescription(ExceptionState&);
DRTCPeerConnection.idl47 [RaisesException=Getter] readonly attribute RTCSessionDescription remoteDescription;
DRTCPeerConnection.cpp349 RTCSessionDescription* RTCPeerConnection::remoteDescription(ExceptionState& exceptionState) in remoteDescription() function in blink::RTCPeerConnection
351 WebRTCSessionDescription webSessionDescription = m_peerHandler->remoteDescription(); in remoteDescription()
/external/chromium_org/content/renderer/media/
Drtc_peer_connection_handler.h133 virtual blink::WebRTCSessionDescription remoteDescription() in NON_EXPORTED_BASE()
Drtc_peer_connection_handler_unittest.cc378 EXPECT_EQ(description.type(), pc_handler_->remoteDescription().type()); in TEST_F()
379 EXPECT_EQ(description.sdp(), pc_handler_->remoteDescription().sdp()); in TEST_F()
Drtc_peer_connection_handler.cc603 RTCPeerConnectionHandler::remoteDescription() { in remoteDescription() function in content::RTCPeerConnectionHandler
/external/chromium_org/third_party/libjingle/source/talk/app/webrtc/objctests/
DRTCPeerConnectionTest.mm217 EXPECT_TRUE([answerSDP.type isEqual:pcOffer.remoteDescription.type]);
218 EXPECT_TRUE([offerSDP.type isEqual:pcAnswer.remoteDescription.type]);
/external/chromium_org/third_party/libjingle/source/talk/examples/objc/AppRTCDemo/
DAPPRTCConnectionManager.m378 if (self.peerConnection.remoteDescription &&
397 if (self.peerConnection.remoteDescription) {
/external/chromium_org/third_party/libjingle/source/talk/app/webrtc/objc/
DRTCPeerConnection.mm233 - (RTCSessionDescription*)remoteDescription { method