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

Unified Diff: talk/app/webrtc/objc/RTCPeerConnectionFactory.mm

Issue 1770003002: Renamed VideoSourceInterface to VideoTrackSourceInterface. (Closed) Base URL: https://chromium.googlesource.com/external/webrtc.git@master
Patch Set: Rebased Created 4 years, 9 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: talk/app/webrtc/objc/RTCPeerConnectionFactory.mm
diff --git a/talk/app/webrtc/objc/RTCPeerConnectionFactory.mm b/talk/app/webrtc/objc/RTCPeerConnectionFactory.mm
index 3393eca16c218498c592b0680cda7bf52f465282..a60263a12f7c61bcd7c63db247be60379a8438f5 100644
--- a/talk/app/webrtc/objc/RTCPeerConnectionFactory.mm
+++ b/talk/app/webrtc/objc/RTCPeerConnectionFactory.mm
@@ -125,9 +125,8 @@
if (!capturer) {
return nil;
}
- rtc::scoped_refptr<webrtc::VideoSourceInterface> source =
- self.nativeFactory->CreateVideoSource([capturer takeNativeCapturer],
- constraints.constraints);
+ rtc::scoped_refptr<webrtc::VideoTrackSourceInterface> source =
+ self.nativeFactory->CreateVideoSource([capturer takeNativeCapturer], constraints.constraints);
return [[RTCVideoSource alloc] initWithMediaSource:source];
}

Powered by Google App Engine
This is Rietveld 408576698