Index: webrtc/api/objc/RTCMediaStream.h |
diff --git a/webrtc/api/objc/RTCMediaStream.h b/webrtc/api/objc/RTCMediaStream.h |
index 7df1ea8ea80ee8c12d419a210f4548d2e5deccc0..e3ab754f3a9cae082579c55ecf8f3907a0bf7f2b 100644 |
--- a/webrtc/api/objc/RTCMediaStream.h |
+++ b/webrtc/api/objc/RTCMediaStream.h |
@@ -11,7 +11,6 @@ |
#import <Foundation/Foundation.h> |
NS_ASSUME_NONNULL_BEGIN |
-// TODO(hjon): Update nullability types. See http://crbug/webrtc/5592 |
@class RTCAudioTrack; |
@class RTCPeerConnectionFactory; |
@@ -20,12 +19,10 @@ NS_ASSUME_NONNULL_BEGIN |
@interface RTCMediaStream : NSObject |
/** The audio tracks in this stream. */ |
-@property(nonatomic, strong, readonly) NSArray *audioTracks; |
-// @property(nonatomic, strong, readonly) NSArray<RTCAudioTrack *> *audioTracks; |
+@property(nonatomic, strong, readonly) NSArray<RTCAudioTrack *> *audioTracks; |
/** The video tracks in this stream. */ |
-@property(nonatomic, strong, readonly) NSArray *videoTracks; |
-// @property(nonatomic, strong, readonly) NSArray<RTCVideoTrack *> *videoTracks; |
+@property(nonatomic, strong, readonly) NSArray<RTCVideoTrack *> *videoTracks; |
/** An identifier for this media stream. */ |
@property(nonatomic, readonly) NSString *streamId; |