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

Unified Diff: webrtc/p2p/base/dtlstransportchannel.h

Issue 2224563004: Add signaling to support ICE renomination. (Closed) Base URL: https://chromium.googlesource.com/external/webrtc@master
Patch Set: . Created 4 years, 4 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 | « no previous file | webrtc/p2p/base/faketransportcontroller.h » ('j') | webrtc/p2p/base/p2ptransportchannel.h » ('J')
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: webrtc/p2p/base/dtlstransportchannel.h
diff --git a/webrtc/p2p/base/dtlstransportchannel.h b/webrtc/p2p/base/dtlstransportchannel.h
index 7b8247a44903a5da6ac3535845f6f83a8c9678be..26ee7e1130adabf5f6844e1499b9f5d998486fd3 100644
--- a/webrtc/p2p/base/dtlstransportchannel.h
+++ b/webrtc/p2p/base/dtlstransportchannel.h
@@ -164,13 +164,11 @@ class DtlsTransportChannelWrapper : 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);
Taylor Brandstetter 2016/08/08 22:28:15 I think the introduction of IceParameters is a gre
honghaiz3 2016/08/11 04:57:57 Added TODO. I did not include in this CL because c
}
- 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);
« no previous file with comments | « no previous file | webrtc/p2p/base/faketransportcontroller.h » ('j') | webrtc/p2p/base/p2ptransportchannel.h » ('J')

Powered by Google App Engine
This is Rietveld 408576698