Chromium Code Reviews| Index: webrtc/api/objc/RTCPeerConnection.h |
| diff --git a/webrtc/api/objc/RTCPeerConnection.h b/webrtc/api/objc/RTCPeerConnection.h |
| index e0f9b78e8ebb0ac1b41234e8501595ffe1f201cd..b4316c0b7c7ec07beec15391cfe26e76170664ee 100644 |
| --- a/webrtc/api/objc/RTCPeerConnection.h |
| +++ b/webrtc/api/objc/RTCPeerConnection.h |
| @@ -18,6 +18,7 @@ |
| @class RTCMediaStream; |
| @class RTCMediaStreamTrack; |
| @class RTCPeerConnectionFactory; |
| +@class RTCRtpSender; |
| @class RTCSessionDescription; |
| @class RTCStatsReport; |
| @@ -115,6 +116,9 @@ typedef NS_ENUM(NSInteger, RTCStatsOutputLevel) { |
| @property(nonatomic, readonly) RTCIceConnectionState iceConnectionState; |
| @property(nonatomic, readonly) RTCIceGatheringState iceGatheringState; |
| +/** Gets all RTCRtpSenders associated with this peer connection */ |
| +@property(nonatomic, readonly) NSArray<RTCRtpSender*> *senders; |
|
tkchin_webrtc
2016/04/05 18:48:15
ObjC pointer style is space *
@property(nonatomic
skvlad
2016/04/05 23:21:27
Done.
|
| + |
| - (instancetype)init NS_UNAVAILABLE; |
| /** Sets the PeerConnection's global configuration to |configuration|. |