Chromium Code Reviews| Index: webrtc/api/objc/RTCRtpParameters.h |
| diff --git a/webrtc/api/objc/RTCRtpParameters.h b/webrtc/api/objc/RTCRtpParameters.h |
| index d38e9ef64749b01bbbbdf522fd9b645cb67c051a..977644f5923ecbd877e67256a4a209ba94bff569 100644 |
| --- a/webrtc/api/objc/RTCRtpParameters.h |
| +++ b/webrtc/api/objc/RTCRtpParameters.h |
| @@ -10,6 +10,7 @@ |
| #import <Foundation/Foundation.h> |
| +#import "webrtc/api/objc/RTCRtpCodecParameters.h" |
| #import "webrtc/api/objc/RTCRtpEncodingParameters.h" |
| NS_ASSUME_NONNULL_BEGIN |
| @@ -19,6 +20,9 @@ NS_ASSUME_NONNULL_BEGIN |
| /** The currently active encodings in the order of preference. */ |
| @property(nonatomic, copy) NSArray<RTCRtpEncodingParameters *> *encodings; |
| +/** The negotiated set of send codecs in order of preference. */ |
| +@property(nonatomic, copy) NSArray<RTCRtpCodecParameters*>* codecs; |
|
tkchin_webrtc
2016/04/14 17:52:51
update * spacing (see above)
Taylor Brandstetter
2016/04/14 18:17:22
Done. I think git cl format did this and I didn't
tkchin_webrtc
2016/04/14 18:30:08
Yeah git cl format wrecks ObjC styling.
|
| + |
| - (instancetype)init NS_DESIGNATED_INITIALIZER; |
| @end |