OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:iceCandidate
(Results
1 - 5
of
5
) sorted by null
/external/chromium_org/third_party/WebKit/Source/core/platform/mediastream/
RTCPeerConnectionHandler.cpp
120
bool RTCPeerConnectionHandler::addIceCandidate(blink::WebRTCICECandidate
iceCandidate
)
122
return m_webHandler->addICECandidate(
iceCandidate
);
125
bool RTCPeerConnectionHandler::addIceCandidate(PassRefPtr<RTCVoidRequest> request, blink::WebRTCICECandidate
iceCandidate
)
127
return m_webHandler->addICECandidate(request,
iceCandidate
);
183
void RTCPeerConnectionHandler::didGenerateICECandidate(const blink::WebRTCICECandidate&
iceCandidate
)
185
m_client->didGenerateIceCandidate(
iceCandidate
);
/external/chromium_org/third_party/libjingle/source/talk/app/webrtc/objc/
RTCPeerConnectionObserver.mm
98
RTCICECandidate*
iceCandidate
=
100
[_delegate peerConnection:_peerConnection gotICECandidate:
iceCandidate
];
RTCPeerConnection.mm
120
talk_base::scoped_ptr<const webrtc::IceCandidateInterface>
iceCandidate
(
122
return self.peerConnection->AddIceCandidate(
iceCandidate
.get());
/external/chromium_org/third_party/WebKit/Source/modules/mediastream/
RTCPeerConnection.cpp
283
void RTCPeerConnection::addIceCandidate(RTCIceCandidate*
iceCandidate
, ExceptionState& exceptionState)
290
if (!
iceCandidate
) {
295
bool valid = m_peerHandler->addIceCandidate(
iceCandidate
->webCandidate());
300
void RTCPeerConnection::addIceCandidate(RTCIceCandidate*
iceCandidate
, PassOwnPtr<VoidCallback> successCallback, PassOwnPtr<RTCErrorCallback> errorCallback, ExceptionState& exceptionState)
307
if (!
iceCandidate
|| !successCallback || !errorCallback) {
314
bool implemented = m_peerHandler->addIceCandidate(request.release(),
iceCandidate
->webCandidate());
549
RefPtr<RTCIceCandidate>
iceCandidate
= RTCIceCandidate::create(webCandidate);
550
scheduleDispatchEvent(RTCIceCandidateEvent::create(false, false,
iceCandidate
.release()));
/external/chromium_org/third_party/WebKit/Source/testing/runner/
MockWebRTCPeerConnectionHandler.cpp
246
bool MockWebRTCPeerConnectionHandler::addICECandidate(const WebRTCICECandidate&
iceCandidate
)
248
m_client->didGenerateICECandidate(
iceCandidate
);
252
bool MockWebRTCPeerConnectionHandler::addICECandidate(const WebRTCVoidRequest& request, const WebRTCICECandidate&
iceCandidate
)
Completed in 93 milliseconds