| 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 11 matching lines...) Expand all Loading... |
| 22 #include "webrtc/api/mediastreaminterface.h" | 22 #include "webrtc/api/mediastreaminterface.h" |
| 23 #include "webrtc/api/peerconnection.h" | 23 #include "webrtc/api/peerconnection.h" |
| 24 #include "webrtc/api/peerconnectionfactory.h" | 24 #include "webrtc/api/peerconnectionfactory.h" |
| 25 #include "webrtc/api/peerconnectioninterface.h" | 25 #include "webrtc/api/peerconnectioninterface.h" |
| 26 #include "webrtc/api/test/fakeaudiocapturemodule.h" | 26 #include "webrtc/api/test/fakeaudiocapturemodule.h" |
| 27 #include "webrtc/api/test/fakeconstraints.h" | 27 #include "webrtc/api/test/fakeconstraints.h" |
| 28 #include "webrtc/api/test/fakedtlsidentitystore.h" | 28 #include "webrtc/api/test/fakedtlsidentitystore.h" |
| 29 #include "webrtc/api/test/fakeperiodicvideocapturer.h" | 29 #include "webrtc/api/test/fakeperiodicvideocapturer.h" |
| 30 #include "webrtc/api/test/fakevideotrackrenderer.h" | 30 #include "webrtc/api/test/fakevideotrackrenderer.h" |
| 31 #include "webrtc/api/test/mockpeerconnectionobservers.h" | 31 #include "webrtc/api/test/mockpeerconnectionobservers.h" |
| 32 #include "webrtc/api/videosourceinterface.h" | |
| 33 #include "webrtc/base/gunit.h" | 32 #include "webrtc/base/gunit.h" |
| 34 #include "webrtc/base/physicalsocketserver.h" | 33 #include "webrtc/base/physicalsocketserver.h" |
| 35 #include "webrtc/base/scoped_ptr.h" | 34 #include "webrtc/base/scoped_ptr.h" |
| 36 #include "webrtc/base/ssladapter.h" | 35 #include "webrtc/base/ssladapter.h" |
| 37 #include "webrtc/base/sslstreamadapter.h" | 36 #include "webrtc/base/sslstreamadapter.h" |
| 38 #include "webrtc/base/thread.h" | 37 #include "webrtc/base/thread.h" |
| 39 #include "webrtc/base/virtualsocketserver.h" | 38 #include "webrtc/base/virtualsocketserver.h" |
| 40 #include "webrtc/media/engine/fakewebrtcvideoengine.h" | 39 #include "webrtc/media/engine/fakewebrtcvideoengine.h" |
| 41 #include "webrtc/p2p/base/p2pconstants.h" | 40 #include "webrtc/p2p/base/p2pconstants.h" |
| 42 #include "webrtc/p2p/base/sessiondescription.h" | 41 #include "webrtc/p2p/base/sessiondescription.h" |
| (...skipping 2044 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 2087 server.urls.push_back("turn:hostname2"); | 2086 server.urls.push_back("turn:hostname2"); |
| 2088 servers.push_back(server); | 2087 servers.push_back(server); |
| 2089 EXPECT_TRUE(webrtc::ParseIceServers(servers, &stun_servers_, &turn_servers_)); | 2088 EXPECT_TRUE(webrtc::ParseIceServers(servers, &stun_servers_, &turn_servers_)); |
| 2090 EXPECT_EQ(2U, turn_servers_.size()); | 2089 EXPECT_EQ(2U, turn_servers_.size()); |
| 2091 EXPECT_NE(turn_servers_[0].priority, turn_servers_[1].priority); | 2090 EXPECT_NE(turn_servers_[0].priority, turn_servers_[1].priority); |
| 2092 } | 2091 } |
| 2093 | 2092 |
| 2094 #endif // if !defined(THREAD_SANITIZER) | 2093 #endif // if !defined(THREAD_SANITIZER) |
| 2095 | 2094 |
| 2096 } // namespace | 2095 } // namespace |
| OLD | NEW |