OLD | NEW |
1 /* | 1 /* |
2 * Copyright 2012 The WebRTC project authors. All Rights Reserved. | 2 * Copyright 2012 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 43 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
54 } | 54 } |
55 | 55 |
56 using cricket::FakeVoiceMediaChannel; | 56 using cricket::FakeVoiceMediaChannel; |
57 using cricket::TransportInfo; | 57 using cricket::TransportInfo; |
58 using rtc::SocketAddress; | 58 using rtc::SocketAddress; |
59 using rtc::Thread; | 59 using rtc::Thread; |
60 using webrtc::CreateSessionDescription; | 60 using webrtc::CreateSessionDescription; |
61 using webrtc::CreateSessionDescriptionObserver; | 61 using webrtc::CreateSessionDescriptionObserver; |
62 using webrtc::CreateSessionDescriptionRequest; | 62 using webrtc::CreateSessionDescriptionRequest; |
63 using webrtc::DataChannel; | 63 using webrtc::DataChannel; |
64 using webrtc::DtlsIdentityStoreInterface; | |
65 using webrtc::FakeMetricsObserver; | 64 using webrtc::FakeMetricsObserver; |
66 using webrtc::IceCandidateCollection; | 65 using webrtc::IceCandidateCollection; |
67 using webrtc::InternalDataChannelInit; | 66 using webrtc::InternalDataChannelInit; |
68 using webrtc::JsepIceCandidate; | 67 using webrtc::JsepIceCandidate; |
69 using webrtc::JsepSessionDescription; | 68 using webrtc::JsepSessionDescription; |
70 using webrtc::PeerConnectionFactoryInterface; | 69 using webrtc::PeerConnectionFactoryInterface; |
71 using webrtc::PeerConnectionInterface; | 70 using webrtc::PeerConnectionInterface; |
72 using webrtc::SessionDescriptionInterface; | 71 using webrtc::SessionDescriptionInterface; |
73 using webrtc::SessionStats; | 72 using webrtc::SessionStats; |
74 using webrtc::StreamCollection; | 73 using webrtc::StreamCollection; |
(...skipping 4184 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
4259 } | 4258 } |
4260 | 4259 |
4261 // TODO(bemasc): Add a TestIceStatesBundle with BUNDLE enabled. That test | 4260 // TODO(bemasc): Add a TestIceStatesBundle with BUNDLE enabled. That test |
4262 // currently fails because upon disconnection and reconnection OnIceComplete is | 4261 // currently fails because upon disconnection and reconnection OnIceComplete is |
4263 // called more than once without returning to IceGatheringGathering. | 4262 // called more than once without returning to IceGatheringGathering. |
4264 | 4263 |
4265 INSTANTIATE_TEST_CASE_P(WebRtcSessionTests, | 4264 INSTANTIATE_TEST_CASE_P(WebRtcSessionTests, |
4266 WebRtcSessionTest, | 4265 WebRtcSessionTest, |
4267 testing::Values(ALREADY_GENERATED, | 4266 testing::Values(ALREADY_GENERATED, |
4268 DTLS_IDENTITY_STORE)); | 4267 DTLS_IDENTITY_STORE)); |
OLD | NEW |