| Index: webrtc/p2p/base/dtlstransportchannel.h
|
| diff --git a/webrtc/p2p/base/dtlstransportchannel.h b/webrtc/p2p/base/dtlstransportchannel.h
|
| index f396a57d30ede0a5b9ab4042751459400d7aaa4d..22fdaf42a1b07748d6d19406142e201dd37ee888 100644
|
| --- a/webrtc/p2p/base/dtlstransportchannel.h
|
| +++ b/webrtc/p2p/base/dtlstransportchannel.h
|
| @@ -186,6 +186,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);
|
| @@ -209,6 +212,8 @@ 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& candidates);
|
| void OnRoleConflict(TransportChannelImpl* channel);
|
| void OnRouteChange(TransportChannel* channel, const Candidate& candidate);
|
| void OnConnectionRemoved(TransportChannelImpl* channel);
|
|
|