OLD | NEW |
1 /* | 1 /* |
2 * Copyright 2014 The WebRTC Project Authors. All rights reserved. | 2 * Copyright 2014 The WebRTC Project Authors. All rights reserved. |
3 * | 3 * |
4 * Use of this source code is governed by a BSD-style license | 4 * Use of this source code is governed by a BSD-style license |
5 * that can be found in the LICENSE file in the root of the source | 5 * that can be found in the LICENSE file in the root of the source |
6 * tree. An additional intellectual property rights grant can be found | 6 * tree. An additional intellectual property rights grant can be found |
7 * in the file PATENTS. All contributing project authors may | 7 * in the file PATENTS. All contributing project authors may |
8 * be found in the AUTHORS file in the root of the source tree. | 8 * be found in the AUTHORS file in the root of the source tree. |
9 */ | 9 */ |
10 | 10 |
(...skipping 26 matching lines...) Expand all Loading... |
37 | 37 |
38 @property(nonatomic, strong) NSString *roomId; | 38 @property(nonatomic, strong) NSString *roomId; |
39 @property(nonatomic, strong) NSString *clientId; | 39 @property(nonatomic, strong) NSString *clientId; |
40 @property(nonatomic, assign) BOOL isInitiator; | 40 @property(nonatomic, assign) BOOL isInitiator; |
41 @property(nonatomic, strong) NSMutableArray *iceServers; | 41 @property(nonatomic, strong) NSMutableArray *iceServers; |
42 @property(nonatomic, strong) NSURL *webSocketURL; | 42 @property(nonatomic, strong) NSURL *webSocketURL; |
43 @property(nonatomic, strong) NSURL *webSocketRestURL; | 43 @property(nonatomic, strong) NSURL *webSocketRestURL; |
44 @property(nonatomic, readonly) BOOL isLoopback; | 44 @property(nonatomic, readonly) BOOL isLoopback; |
45 @property(nonatomic, readonly) BOOL isAudioOnly; | 45 @property(nonatomic, readonly) BOOL isAudioOnly; |
46 @property(nonatomic, readonly) BOOL shouldMakeAecDump; | 46 @property(nonatomic, readonly) BOOL shouldMakeAecDump; |
47 @property(nonatomic, assign) BOOL isAecDumpActive; | |
48 @property(nonatomic, readonly) BOOL shouldUseLevelControl; | 47 @property(nonatomic, readonly) BOOL shouldUseLevelControl; |
49 | 48 |
50 @property(nonatomic, strong) | 49 @property(nonatomic, strong) |
51 RTCMediaConstraints *defaultPeerConnectionConstraints; | 50 RTCMediaConstraints *defaultPeerConnectionConstraints; |
52 | 51 |
53 - (instancetype)initWithRoomServerClient:(id<ARDRoomServerClient>)rsClient | 52 - (instancetype)initWithRoomServerClient:(id<ARDRoomServerClient>)rsClient |
54 signalingChannel:(id<ARDSignalingChannel>)channel | 53 signalingChannel:(id<ARDSignalingChannel>)channel |
55 turnClient:(id<ARDTURNClient>)turnClient | 54 turnClient:(id<ARDTURNClient>)turnClient |
56 delegate:(id<ARDAppClientDelegate>)delegate; | 55 delegate:(id<ARDAppClientDelegate>)delegate; |
57 | 56 |
58 @end | 57 @end |
OLD | NEW |