| Index: webrtc/api/peerconnectionfactory.cc
|
| diff --git a/webrtc/api/peerconnectionfactory.cc b/webrtc/api/peerconnectionfactory.cc
|
| index b2a379839c06a40ed13cfad151896254820b2220..8c8fb6f8c05b33cfcaf0eb81578f886fb81a716a 100644
|
| --- a/webrtc/api/peerconnectionfactory.cc
|
| +++ b/webrtc/api/peerconnectionfactory.cc
|
| @@ -172,8 +172,9 @@ bool PeerConnectionFactory::Initialize() {
|
| worker_thread_->Invoke<cricket::MediaEngineInterface*>(rtc::Bind(
|
| &PeerConnectionFactory::CreateMediaEngine_w, this));
|
|
|
| - channel_manager_.reset(
|
| - new cricket::ChannelManager(media_engine, worker_thread_));
|
| + rtc::Thread* const network_thread = worker_thread_;
|
| + channel_manager_.reset(new cricket::ChannelManager(
|
| + media_engine, worker_thread_, network_thread));
|
|
|
| channel_manager_->SetVideoRtxEnabled(true);
|
| if (!channel_manager_->Init()) {
|
|
|