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

Unified Diff: talk/app/webrtc/objc/RTCAVFoundationVideoSource.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/RTCAVFoundationVideoSource.mm
diff --git a/talk/app/webrtc/objc/RTCAVFoundationVideoSource.mm b/talk/app/webrtc/objc/RTCAVFoundationVideoSource.mm
index 525cead7da2a1368b7ec91f3ecdd234c3452a807..9d82283142c19baf3283db2a905464816220714d 100644
--- a/talk/app/webrtc/objc/RTCAVFoundationVideoSource.mm
+++ b/talk/app/webrtc/objc/RTCAVFoundationVideoSource.mm
@@ -39,9 +39,8 @@
NSParameterAssert(factory);
rtc::scoped_ptr<webrtc::AVFoundationVideoCapturer> capturer;
capturer.reset(new webrtc::AVFoundationVideoCapturer());
- rtc::scoped_refptr<webrtc::VideoSourceInterface> source =
- factory.nativeFactory->CreateVideoSource(capturer.release(),
- constraints.constraints);
+ rtc::scoped_refptr<webrtc::VideoTrackSourceInterface> source =
+ factory.nativeFactory->CreateVideoSource(capturer.release(), constraints.constraints);
return [super initWithMediaSource:source];
}
« no previous file with comments | « no previous file | talk/app/webrtc/objc/RTCPeerConnectionFactory.mm » ('j') | webrtc/api/videocapturertracksource.h » ('J')

Powered by Google App Engine
This is Rietveld 408576698