Index: webrtc/p2p/quic/quictransportchannel.h |
diff --git a/webrtc/p2p/quic/quictransportchannel.h b/webrtc/p2p/quic/quictransportchannel.h |
index 1ab13fa0b217118a04ea00032ea168d1533012a0..8d607bb9aa91b9a6131e9014f55afd4fd3c6a621 100644 |
--- a/webrtc/p2p/quic/quictransportchannel.h |
+++ b/webrtc/p2p/quic/quictransportchannel.h |
@@ -142,13 +142,11 @@ class QuicTransportChannel : public TransportChannelImpl, |
void SetIceTiebreaker(uint64_t tiebreaker) override { |
channel_->SetIceTiebreaker(tiebreaker); |
} |
- void SetIceCredentials(const std::string& ice_ufrag, |
- const std::string& ice_pwd) override { |
- channel_->SetIceCredentials(ice_ufrag, ice_pwd); |
+ void SetIceParameters(const IceParameters& ice_params) override { |
+ channel_->SetIceParameters(ice_params); |
} |
- void SetRemoteIceCredentials(const std::string& ice_ufrag, |
- const std::string& ice_pwd) override { |
- channel_->SetRemoteIceCredentials(ice_ufrag, ice_pwd); |
+ void SetRemoteIceParameters(const IceParameters& ice_params) override { |
+ channel_->SetRemoteIceParameters(ice_params); |
} |
void SetRemoteIceMode(IceMode mode) override { |
channel_->SetRemoteIceMode(mode); |