Index: webrtc/p2p/base/dtlstransportchannel.h |
diff --git a/webrtc/p2p/base/dtlstransportchannel.h b/webrtc/p2p/base/dtlstransportchannel.h |
index 955b963a3657a1efc7436e4347158b02e7e112e2..dba69555aeda1af93e3d44c0389ebc7208ba005a 100644 |
--- a/webrtc/p2p/base/dtlstransportchannel.h |
+++ b/webrtc/p2p/base/dtlstransportchannel.h |
@@ -190,6 +190,9 @@ class DtlsTransportChannelWrapper : public TransportChannelImpl { |
void AddRemoteCandidate(const Candidate& candidate) override { |
channel_->AddRemoteCandidate(candidate); |
} |
+ void RemoveRemoteCandidate(const Candidate& candidate) override { |
+ channel_->RemoveRemoteCandidate(candidate); |
+ } |
void SetIceConfig(const IceConfig& config) override { |
channel_->SetIceConfig(config); |
@@ -213,6 +216,7 @@ class DtlsTransportChannelWrapper : public TransportChannelImpl { |
bool HandleDtlsPacket(const char* data, size_t size); |
void OnGatheringState(TransportChannelImpl* channel); |
void OnCandidateGathered(TransportChannelImpl* channel, const Candidate& c); |
+ void OnCandidatesRemoved(TransportChannelImpl* channel, const Candidates& cc); |
Taylor Brandstetter
2016/02/10 21:58:08
Just curious, why name the variable cc?
pthatcher1
2016/02/11 20:25:51
Agreed
honghaiz3
2016/02/12 00:56:55
Changed to candidates.
What I meant was
one c mea
|
void OnRoleConflict(TransportChannelImpl* channel); |
void OnRouteChange(TransportChannel* channel, const Candidate& candidate); |
void OnConnectionRemoved(TransportChannelImpl* channel); |