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

Unified Diff: webrtc/pc/webrtcsession.cc

Issue 2689503002: Removing unnecessary parameters from CreateXChannel methods. (Closed)
Patch Set: Rebase onto master Created 3 years, 10 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 | « webrtc/pc/rtpsenderreceiver_unittest.cc ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: webrtc/pc/webrtcsession.cc
diff --git a/webrtc/pc/webrtcsession.cc b/webrtc/pc/webrtcsession.cc
index e59466c67ba1bdd574d5011b20db0d3676fd8996..763c19cc160296d99311338694634e7e5faa9c1d 100644
--- a/webrtc/pc/webrtcsession.cc
+++ b/webrtc/pc/webrtcsession.cc
@@ -1733,8 +1733,8 @@ bool WebRtcSession::CreateVoiceChannel(const cricket::ContentInfo* content,
voice_channel_.reset(channel_manager_->CreateVoiceChannel(
media_controller_, rtp_dtls_transport, rtcp_dtls_transport,
- transport_controller_->signaling_thread(), content->name,
- bundle_transport, require_rtcp_mux, SrtpRequired(), audio_options_));
+ transport_controller_->signaling_thread(), content->name, SrtpRequired(),
+ audio_options_));
if (!voice_channel_) {
transport_controller_->DestroyDtlsTransport(
transport_name, cricket::ICE_CANDIDATE_COMPONENT_RTP);
@@ -1775,8 +1775,8 @@ bool WebRtcSession::CreateVideoChannel(const cricket::ContentInfo* content,
video_channel_.reset(channel_manager_->CreateVideoChannel(
media_controller_, rtp_dtls_transport, rtcp_dtls_transport,
- transport_controller_->signaling_thread(), content->name,
- bundle_transport, require_rtcp_mux, SrtpRequired(), video_options_));
+ transport_controller_->signaling_thread(), content->name, SrtpRequired(),
+ video_options_));
if (!video_channel_) {
transport_controller_->DestroyDtlsTransport(
@@ -1841,7 +1841,7 @@ bool WebRtcSession::CreateDataChannel(const cricket::ContentInfo* content,
rtp_data_channel_.reset(channel_manager_->CreateRtpDataChannel(
media_controller_, rtp_dtls_transport, rtcp_dtls_transport,
transport_controller_->signaling_thread(), content->name,
- bundle_transport, require_rtcp_mux, SrtpRequired()));
+ SrtpRequired()));
if (!rtp_data_channel_) {
transport_controller_->DestroyDtlsTransport(
« no previous file with comments | « webrtc/pc/rtpsenderreceiver_unittest.cc ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698