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

Unified Diff: webrtc/api/peerconnectionfactory.cc

Issue 1759473003: Removed VideoSource dependency to ChannelManager. (Closed) Base URL: https://chromium.googlesource.com/external/webrtc.git@master
Patch Set: Created 4 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
Index: webrtc/api/peerconnectionfactory.cc
diff --git a/webrtc/api/peerconnectionfactory.cc b/webrtc/api/peerconnectionfactory.cc
index c05cd852f605faada5dbd47e68e7b2ec8afd94e8..d6510b09b21004b2951efc6fa9072b69d68a7532 100644
--- a/webrtc/api/peerconnectionfactory.cc
+++ b/webrtc/api/peerconnectionfactory.cc
@@ -204,7 +204,7 @@ PeerConnectionFactory::CreateVideoSource(
const MediaConstraintsInterface* constraints) {
RTC_DCHECK(signaling_thread_->IsCurrent());
rtc::scoped_refptr<VideoSource> source(VideoSource::Create(
- channel_manager_.get(), capturer, constraints, false));
+ worker_thread_, capturer, constraints, false));
return VideoSourceProxy::Create(signaling_thread_, source);
}
« no previous file with comments | « webrtc/api/peerconnection.cc ('k') | webrtc/api/videosource.h » ('j') | webrtc/api/videosource.h » ('J')

Powered by Google App Engine
This is Rietveld 408576698