summaryrefslogtreecommitdiff
path: root/app/webrtc/objc/RTCVideoTrack+Internal.h
diff options
context:
space:
mode:
authortkchin@webrtc.org <tkchin@webrtc.org>2014-11-04 23:06:15 +0000
committertkchin@webrtc.org <tkchin@webrtc.org>2014-11-04 23:06:15 +0000
commite889fa57d94294d2f1acceed57d72b8896ca1d37 (patch)
treeef58f6abfe6e801281ae5260500faae36f11da1e /app/webrtc/objc/RTCVideoTrack+Internal.h
parent1fc1bd09ab4a988010edc53715d0e9991f876dc1 (diff)
downloadtalk-e889fa57d94294d2f1acceed57d72b8896ca1d37.tar.gz
Cleanup RTCVideoRenderer interface.
RTCVideoRenderer should be a protocol not a class. This change includes an adapter for use with the C++ apis. The video views have been refactored to implement that protocol. BUG=3795 R=glaznev@webrtc.org Review URL: https://webrtc-codereview.appspot.com/23279004 git-svn-id: http://webrtc.googlecode.com/svn/trunk/talk@7626 4adac7df-926f-26a2-2b94-8c16560cd09d
Diffstat (limited to 'app/webrtc/objc/RTCVideoTrack+Internal.h')
-rw-r--r--app/webrtc/objc/RTCVideoTrack+Internal.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/app/webrtc/objc/RTCVideoTrack+Internal.h b/app/webrtc/objc/RTCVideoTrack+Internal.h
index 03c8f95..5f267ac 100644
--- a/app/webrtc/objc/RTCVideoTrack+Internal.h
+++ b/app/webrtc/objc/RTCVideoTrack+Internal.h
@@ -34,7 +34,7 @@
@interface RTCVideoTrack (Internal)
-@property(nonatomic, assign, readonly)
- rtc::scoped_refptr<webrtc::VideoTrackInterface> videoTrack;
+@property(nonatomic, readonly)
+ rtc::scoped_refptr<webrtc::VideoTrackInterface> nativeVideoTrack;
@end