Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(1852)

Unified Diff: webrtc/examples/objc/AppRTCMobile/tests/ARDAppClient_xctest.mm

Issue 2770113004: Pass settings model to ARDAppClient instead of individual settings. (Closed)
Patch Set: Fix test. Created 3 years, 9 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « webrtc/examples/objc/AppRTCMobile/mac/APPRTCViewController.m ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: webrtc/examples/objc/AppRTCMobile/tests/ARDAppClient_xctest.mm
diff --git a/webrtc/examples/objc/AppRTCMobile/tests/ARDAppClient_xctest.mm b/webrtc/examples/objc/AppRTCMobile/tests/ARDAppClient_xctest.mm
index c2cd9e33688914d2f134b1ecbd4f03796d6f4577..fc7b76822c014f7c4b4c6854f8dc0163c4d6f8eb 100644
--- a/webrtc/examples/objc/AppRTCMobile/tests/ARDAppClient_xctest.mm
+++ b/webrtc/examples/objc/AppRTCMobile/tests/ARDAppClient_xctest.mm
@@ -22,6 +22,7 @@
#import "ARDJoinResponse+Internal.h"
#import "ARDMessageResponse+Internal.h"
#import "ARDSDPUtils.h"
+#import "ARDSettingsModel.h"
@interface ARDAppClientTest : XCTestCase
@end
@@ -209,11 +210,13 @@
// Kick off connection.
[caller connectToRoomWithId:roomId
+ settings:[[ARDSettingsModel alloc] init]
isLoopback:NO
isAudioOnly:NO
shouldMakeAecDump:NO
shouldUseLevelControl:NO];
[answerer connectToRoomWithId:roomId
+ settings:[[ARDSettingsModel alloc] init]
isLoopback:NO
isAudioOnly:NO
shouldMakeAecDump:NO
@@ -250,6 +253,7 @@
// Kick off connection.
[caller connectToRoomWithId:roomId
+ settings:[[ARDSettingsModel alloc] init]
isLoopback:NO
isAudioOnly:NO
shouldMakeAecDump:NO
« no previous file with comments | « webrtc/examples/objc/AppRTCMobile/mac/APPRTCViewController.m ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698