Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(310)

Unified Diff: webrtc/api/peerconnection.cc

Issue 1785613011: Revert of Remove candidates when doing continual gathering (Closed) Base URL: https://chromium.googlesource.com/external/webrtc@master
Patch Set: Created 4 years, 9 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « webrtc/api/peerconnection.h ('k') | webrtc/api/peerconnectioninterface.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: webrtc/api/peerconnection.cc
diff --git a/webrtc/api/peerconnection.cc b/webrtc/api/peerconnection.cc
index 9cd5cee04d512886cac2278e36886e848efacfbd..c2039aeea414321e612e461d635df72e486904a3 100644
--- a/webrtc/api/peerconnection.cc
+++ b/webrtc/api/peerconnection.cc
@@ -1207,12 +1207,6 @@
return session_->ProcessIceMessage(ice_candidate);
}
-bool PeerConnection::RemoveIceCandidates(
- const std::vector<cricket::Candidate>& candidates) {
- TRACE_EVENT0("webrtc", "PeerConnection::RemoveIceCandidates");
- return session_->RemoveRemoteIceCandidates(candidates);
-}
-
void PeerConnection::RegisterUMAObserver(UMAObserver* observer) {
TRACE_EVENT0("webrtc", "PeerConnection::RegisterUmaObserver");
uma_observer_ = observer;
@@ -1391,12 +1385,6 @@
observer_->OnIceCandidate(candidate);
}
-void PeerConnection::OnIceCandidatesRemoved(
- const std::vector<cricket::Candidate>& candidates) {
- RTC_DCHECK(signaling_thread()->IsCurrent());
- observer_->OnIceCandidatesRemoved(candidates);
-}
-
void PeerConnection::OnIceConnectionReceivingChange(bool receiving) {
RTC_DCHECK(signaling_thread()->IsCurrent());
observer_->OnIceConnectionReceivingChange(receiving);
« no previous file with comments | « webrtc/api/peerconnection.h ('k') | webrtc/api/peerconnectioninterface.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698