Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(823)

Unified Diff: talk/app/webrtc/webrtcsdp_unittest.cc

Issue 1642733002: Removing "candidates" attribute from TransportDescription. (Closed) Base URL: https://chromium.googlesource.com/external/webrtc.git@master
Patch Set: Created 4 years, 11 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « talk/app/webrtc/webrtcsdp.cc ('k') | webrtc/p2p/base/dtlstransportchannel_unittest.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: talk/app/webrtc/webrtcsdp_unittest.cc
diff --git a/talk/app/webrtc/webrtcsdp_unittest.cc b/talk/app/webrtc/webrtcsdp_unittest.cc
index 15fc8083b4e8503fed7d6259706807e93c8d799e..70e0f36fc23a311dcac08447ea0ba118259b2a33 100644
--- a/talk/app/webrtc/webrtcsdp_unittest.cc
+++ b/talk/app/webrtc/webrtcsdp_unittest.cc
@@ -898,26 +898,12 @@ class WebRtcSdpTest : public testing::Test {
}
EXPECT_EQ(transport1.description.transport_options,
transport2.description.transport_options);
- EXPECT_TRUE(CompareCandidates(transport1.description.candidates,
- transport2.description.candidates));
}
// global attributes
EXPECT_EQ(desc1.msid_supported(), desc2.msid_supported());
}
- bool CompareCandidates(const Candidates& cs1, const Candidates& cs2) {
- EXPECT_EQ(cs1.size(), cs2.size());
- if (cs1.size() != cs2.size())
- return false;
- for (size_t i = 0; i< cs1.size(); ++i) {
- const Candidate c1 = cs1.at(i);
- const Candidate c2 = cs2.at(i);
- EXPECT_TRUE(c1.IsEquivalent(c2));
- }
- return true;
- }
-
bool CompareSessionDescription(
const JsepSessionDescription& desc1,
const JsepSessionDescription& desc2) {
@@ -1015,22 +1001,16 @@ class WebRtcSdpTest : public testing::Test {
rtc::SSLFingerprint fingerprint(rtc::DIGEST_SHA_1,
kIdentityDigest,
sizeof(kIdentityDigest));
- EXPECT_TRUE(desc_.AddTransportInfo(
- TransportInfo(kAudioContentName,
- TransportDescription(std::vector<std::string>(),
- kCandidateUfragVoice,
- kCandidatePwdVoice,
- cricket::ICEMODE_FULL,
- cricket::CONNECTIONROLE_NONE,
- &fingerprint, Candidates()))));
- EXPECT_TRUE(desc_.AddTransportInfo(
- TransportInfo(kVideoContentName,
- TransportDescription(std::vector<std::string>(),
- kCandidateUfragVideo,
- kCandidatePwdVideo,
- cricket::ICEMODE_FULL,
- cricket::CONNECTIONROLE_NONE,
- &fingerprint, Candidates()))));
+ EXPECT_TRUE(desc_.AddTransportInfo(TransportInfo(
+ kAudioContentName,
+ TransportDescription(std::vector<std::string>(), kCandidateUfragVoice,
+ kCandidatePwdVoice, cricket::ICEMODE_FULL,
+ cricket::CONNECTIONROLE_NONE, &fingerprint))));
+ EXPECT_TRUE(desc_.AddTransportInfo(TransportInfo(
+ kVideoContentName,
+ TransportDescription(std::vector<std::string>(), kCandidateUfragVideo,
+ kCandidatePwdVideo, cricket::ICEMODE_FULL,
+ cricket::CONNECTIONROLE_NONE, &fingerprint))));
}
void AddExtmap() {
« no previous file with comments | « talk/app/webrtc/webrtcsdp.cc ('k') | webrtc/p2p/base/dtlstransportchannel_unittest.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698