| 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 |
| 11 #import <Foundation/Foundation.h> | 11 #import <Foundation/Foundation.h> |
| 12 #import <OCMock/OCMock.h> | 12 #import <OCMock/OCMock.h> |
| 13 #import <QuartzCore/CoreAnimation.h> | 13 #import <QuartzCore/CoreAnimation.h> |
| 14 #import <XCTest/XCTest.h> | 14 #import <XCTest/XCTest.h> |
| 15 | 15 |
| 16 #include "webrtc/base/ssladapter.h" | 16 #include "webrtc/rtc_base/ssladapter.h" |
| 17 | 17 |
| 18 #import "WebRTC/RTCMediaConstraints.h" | 18 #import "WebRTC/RTCMediaConstraints.h" |
| 19 #import "WebRTC/RTCPeerConnectionFactory.h" | 19 #import "WebRTC/RTCPeerConnectionFactory.h" |
| 20 | 20 |
| 21 #import "ARDAppClient+Internal.h" | 21 #import "ARDAppClient+Internal.h" |
| 22 #import "ARDJoinResponse+Internal.h" | 22 #import "ARDJoinResponse+Internal.h" |
| 23 #import "ARDMessageResponse+Internal.h" | 23 #import "ARDMessageResponse+Internal.h" |
| 24 #import "ARDSDPUtils.h" | 24 #import "ARDSDPUtils.h" |
| 25 #import "ARDSettingsModel.h" | 25 #import "ARDSettingsModel.h" |
| 26 | 26 |
| (...skipping 229 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 256 isLoopback:NO]; | 256 isLoopback:NO]; |
| 257 [self waitForExpectationsWithTimeout:20 handler:^(NSError *error) { | 257 [self waitForExpectationsWithTimeout:20 handler:^(NSError *error) { |
| 258 if (error) { | 258 if (error) { |
| 259 XCTFail("Expectation timed out with error: %@.", error); | 259 XCTFail("Expectation timed out with error: %@.", error); |
| 260 } | 260 } |
| 261 }]; | 261 }]; |
| 262 } | 262 } |
| 263 #endif | 263 #endif |
| 264 | 264 |
| 265 @end | 265 @end |
| OLD | NEW |