Index: webrtc/examples/objc/AppRTCDemo/ARDAppClient.h |
diff --git a/webrtc/examples/objc/AppRTCDemo/ARDAppClient.h b/webrtc/examples/objc/AppRTCDemo/ARDAppClient.h |
index b7f75462671a0345747c5e5bb5afc74cb1d2b72b..d845b489f1a644a3c5bf0f89888455ff2f99e10e 100644 |
--- a/webrtc/examples/objc/AppRTCDemo/ARDAppClient.h |
+++ b/webrtc/examples/objc/AppRTCDemo/ARDAppClient.h |
@@ -64,9 +64,11 @@ typedef NS_ENUM(NSInteger, ARDAppClientState) { |
// Establishes a connection with the AppRTC servers for the given room id. |
// If |isLoopback| is true, the call will connect to itself. |
// If |isAudioOnly| is true, video will be disabled for the call. |
+// If |shouldMakeAecDump| is true, an aecdump will be created for the call. |
- (void)connectToRoomWithId:(NSString *)roomId |
isLoopback:(BOOL)isLoopback |
- isAudioOnly:(BOOL)isAudioOnly; |
+ isAudioOnly:(BOOL)isAudioOnly |
+ shouldMakeAecDump:(BOOL)shouldMakeAecDump; |
tkchin_webrtc
2016/08/24 00:42:19
nit: align :
peah-webrtc
2016/08/25 09:25:07
Done.
|
// Disconnects from the AppRTC servers and any connected clients. |
- (void)disconnect; |