| 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 |
| 11 #include <memory> | 11 #include <memory> |
| 12 #include <sstream> | 12 #include <sstream> |
| 13 #include <string> | 13 #include <string> |
| 14 #include <utility> | 14 #include <utility> |
| 15 | 15 |
| 16 #include "webrtc/api/audio_codecs/builtin_audio_decoder_factory.h" | 16 #include "webrtc/api/audio_codecs/builtin_audio_decoder_factory.h" |
| 17 #include "webrtc/api/audio_codecs/builtin_audio_encoder_factory.h" |
| 17 #include "webrtc/api/jsepsessiondescription.h" | 18 #include "webrtc/api/jsepsessiondescription.h" |
| 18 #include "webrtc/api/mediastreaminterface.h" | 19 #include "webrtc/api/mediastreaminterface.h" |
| 19 #include "webrtc/api/peerconnectioninterface.h" | 20 #include "webrtc/api/peerconnectioninterface.h" |
| 20 #include "webrtc/api/rtpreceiverinterface.h" | 21 #include "webrtc/api/rtpreceiverinterface.h" |
| 21 #include "webrtc/api/rtpsenderinterface.h" | 22 #include "webrtc/api/rtpsenderinterface.h" |
| 22 #include "webrtc/api/test/fakeconstraints.h" | 23 #include "webrtc/api/test/fakeconstraints.h" |
| 23 #include "webrtc/base/gunit.h" | 24 #include "webrtc/base/gunit.h" |
| 24 #include "webrtc/base/ssladapter.h" | 25 #include "webrtc/base/ssladapter.h" |
| 25 #include "webrtc/base/sslstreamadapter.h" | 26 #include "webrtc/base/sslstreamadapter.h" |
| 26 #include "webrtc/base/stringutils.h" | 27 #include "webrtc/base/stringutils.h" |
| 27 #include "webrtc/base/thread.h" | 28 #include "webrtc/base/thread.h" |
| 28 #include "webrtc/media/base/fakevideocapturer.h" | 29 #include "webrtc/media/base/fakevideocapturer.h" |
| 29 #include "webrtc/media/sctp/sctptransportinternal.h" | 30 #include "webrtc/media/sctp/sctptransportinternal.h" |
| 30 #include "webrtc/modules/audio_coding/codecs/builtin_audio_encoder_factory.h" | |
| 31 #include "webrtc/p2p/base/fakeportallocator.h" | 31 #include "webrtc/p2p/base/fakeportallocator.h" |
| 32 #include "webrtc/pc/audiotrack.h" | 32 #include "webrtc/pc/audiotrack.h" |
| 33 #include "webrtc/pc/mediasession.h" | 33 #include "webrtc/pc/mediasession.h" |
| 34 #include "webrtc/pc/mediastream.h" | 34 #include "webrtc/pc/mediastream.h" |
| 35 #include "webrtc/pc/peerconnection.h" | 35 #include "webrtc/pc/peerconnection.h" |
| 36 #include "webrtc/pc/streamcollection.h" | 36 #include "webrtc/pc/streamcollection.h" |
| 37 #include "webrtc/pc/test/fakertccertificategenerator.h" | 37 #include "webrtc/pc/test/fakertccertificategenerator.h" |
| 38 #include "webrtc/pc/test/fakevideotracksource.h" | 38 #include "webrtc/pc/test/fakevideotracksource.h" |
| 39 #include "webrtc/pc/test/mockpeerconnectionobservers.h" | 39 #include "webrtc/pc/test/mockpeerconnectionobservers.h" |
| 40 #include "webrtc/pc/test/testsdpstrings.h" | 40 #include "webrtc/pc/test/testsdpstrings.h" |
| (...skipping 3558 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 3599 EXPECT_NE(a, f); | 3599 EXPECT_NE(a, f); |
| 3600 | 3600 |
| 3601 PeerConnectionInterface::RTCConfiguration g; | 3601 PeerConnectionInterface::RTCConfiguration g; |
| 3602 g.disable_ipv6 = true; | 3602 g.disable_ipv6 = true; |
| 3603 EXPECT_NE(a, g); | 3603 EXPECT_NE(a, g); |
| 3604 | 3604 |
| 3605 PeerConnectionInterface::RTCConfiguration h( | 3605 PeerConnectionInterface::RTCConfiguration h( |
| 3606 PeerConnectionInterface::RTCConfigurationType::kAggressive); | 3606 PeerConnectionInterface::RTCConfigurationType::kAggressive); |
| 3607 EXPECT_NE(a, h); | 3607 EXPECT_NE(a, h); |
| 3608 } | 3608 } |
| OLD | NEW |