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

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

Issue 1369773003: Add a continual_gathering_policy in PeerConnection RTCConfiguration (Closed) Base URL: https://chromium.googlesource.com/external/webrtc@master
Patch Set: Created 5 years, 3 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
Index: webrtc/p2p/base/dtlstransportchannel.h
diff --git a/webrtc/p2p/base/dtlstransportchannel.h b/webrtc/p2p/base/dtlstransportchannel.h
index ea6a579dfbc186e47c9e21859315e1c2553bf0e0..e52ca10d1d7b70737f3e7283a440bc04beb5eca6 100644
--- a/webrtc/p2p/base/dtlstransportchannel.h
+++ b/webrtc/p2p/base/dtlstransportchannel.h
@@ -197,8 +197,8 @@ class DtlsTransportChannelWrapper : public TransportChannelImpl {
channel_->AddRemoteCandidate(candidate);
}
- void SetReceivingTimeout(int receiving_timeout_ms) override {
- channel_->SetReceivingTimeout(receiving_timeout_ms);
+ void SetIceConfig(const IceConfig& config) override {
+ channel_->SetIceConfig(config);
}
// Needed by DtlsTransport.

Powered by Google App Engine
This is Rietveld 408576698