| Index: webrtc/examples/objc/AppRTCMobile/ios/ARDMainView.m
|
| diff --git a/webrtc/examples/objc/AppRTCMobile/ios/ARDMainView.m b/webrtc/examples/objc/AppRTCMobile/ios/ARDMainView.m
|
| index fd93250adb1513b9600b513fd27dbf0d620d8b41..0308ea0cfd97958331b6c3b07107e71e3e1164f8 100644
|
| --- a/webrtc/examples/objc/AppRTCMobile/ios/ARDMainView.m
|
| +++ b/webrtc/examples/objc/AppRTCMobile/ios/ARDMainView.m
|
| @@ -304,19 +304,13 @@ static CGFloat const kCallControlMargin = 8;
|
| }
|
|
|
| - (void)onStartCall:(id)sender {
|
| - NSString *room = _roomText.roomText;
|
| - // If this is a loopback call, allow a generated room name.
|
| - if (!room.length && _loopbackSwitch.isOn) {
|
| - room = [[NSUUID UUID] UUIDString];
|
| - }
|
| - room = [room stringByReplacingOccurrencesOfString:@"-" withString:@""];
|
| [_delegate mainView:self
|
| - didInputRoom:room
|
| - isLoopback:_loopbackSwitch.isOn
|
| - isAudioOnly:_audioOnlySwitch.isOn
|
| - shouldMakeAecDump:_aecdumpSwitch.isOn
|
| - shouldUseLevelControl:_levelControlSwitch.isOn
|
| - useManualAudio:_useManualAudioSwitch.isOn];
|
| + didInputRoom:_roomText.roomText
|
| + isLoopback:_loopbackSwitch.isOn
|
| + isAudioOnly:_audioOnlySwitch.isOn
|
| + shouldMakeAecDump:_aecdumpSwitch.isOn
|
| + shouldUseLevelControl:_levelControlSwitch.isOn
|
| + useManualAudio:_useManualAudioSwitch.isOn];
|
| }
|
|
|
| @end
|
|
|