Index: webrtc/api/videosource.cc |
diff --git a/webrtc/api/videosource.cc b/webrtc/api/videosource.cc |
index 4e28cec0188e56bf13eaecd11f36dd4ba35ec904..b1a8bd7fba12589aae7344898607a8720cee1463 100644 |
--- a/webrtc/api/videosource.cc |
+++ b/webrtc/api/videosource.cc |
@@ -294,6 +294,13 @@ rtc::scoped_refptr<VideoSource> VideoSource::Create( |
return source; |
} |
+rtc::scoped_refptr<VideoSource> VideoSource::Create( |
+ cricket::ChannelManager* channel_manager, |
+ cricket::VideoCapturer* capturer, |
+ bool remote) { |
+ return Create(channel_manager, capturer, nullptr, remote); |
+} |
+ |
VideoSource::VideoSource(cricket::ChannelManager* channel_manager, |
cricket::VideoCapturer* capturer, |
bool remote) |