| Index: webrtc/api/objc/RTCIceServer.h
|
| diff --git a/webrtc/api/objc/RTCIceServer.h b/webrtc/api/objc/RTCIceServer.h
|
| index 94e3497aea2462102a13a89f48a13bac0397b13d..8ca179f6a07e6a188d03cda0c8e3f37d69814298 100644
|
| --- a/webrtc/api/objc/RTCIceServer.h
|
| +++ b/webrtc/api/objc/RTCIceServer.h
|
| @@ -16,14 +16,14 @@ NS_ASSUME_NONNULL_BEGIN
|
| @interface RTCIceServer : NSObject
|
|
|
| /** URI(s) for this server represented as NSStrings. */
|
| -@property(nonatomic, copy, readonly, nonnull) NSArray *urlStrings;
|
| -// @property(nonatomic, copy, readonly) NSArray<NSString *> *urlStrings;
|
| +@property(nonatomic, readonly, nonnull) NSArray *urlStrings;
|
| +// @property(nonatomic, readonly) NSArray<NSString *> *urlStrings;
|
|
|
| /** Username to use if this RTCIceServer object is a TURN server. */
|
| -@property(nonatomic, copy, readonly, nullable) NSString *username;
|
| +@property(nonatomic, readonly, nullable) NSString *username;
|
|
|
| /** Credential to use if this RTCIceServer object is a TURN server. */
|
| -@property(nonatomic, copy, readonly, nullable) NSString *credential;
|
| +@property(nonatomic, readonly, nullable) NSString *credential;
|
|
|
| - (nonnull instancetype)init NS_UNAVAILABLE;
|
|
|
|
|