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

Unified Diff: talk/app/webrtc/jsepsessiondescription_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 | « no previous file | talk/app/webrtc/webrtcsdp.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: talk/app/webrtc/jsepsessiondescription_unittest.cc
diff --git a/talk/app/webrtc/jsepsessiondescription_unittest.cc b/talk/app/webrtc/jsepsessiondescription_unittest.cc
index a60911494c2f5d844b024d29f0e54b7a92c4a072..d00617bc72c37f13b67d91e001a254fb87779fe5 100644
--- a/talk/app/webrtc/jsepsessiondescription_unittest.cc
+++ b/talk/app/webrtc/jsepsessiondescription_unittest.cc
@@ -73,23 +73,16 @@ static cricket::SessionDescription* CreateCricketSessionDescription() {
desc->AddContent(cricket::CN_VIDEO, cricket::NS_JINGLE_RTP,
video.release());
- EXPECT_TRUE(desc->AddTransportInfo(
- cricket::TransportInfo(
- cricket::CN_AUDIO,
- cricket::TransportDescription(
- std::vector<std::string>(),
- kCandidateUfragVoice, kCandidatePwdVoice,
- cricket::ICEMODE_FULL,
- cricket::CONNECTIONROLE_NONE,
- NULL, cricket::Candidates()))));
- EXPECT_TRUE(desc->AddTransportInfo(
- cricket::TransportInfo(cricket::CN_VIDEO,
- cricket::TransportDescription(
- std::vector<std::string>(),
- kCandidateUfragVideo, kCandidatePwdVideo,
- cricket::ICEMODE_FULL,
- cricket::CONNECTIONROLE_NONE,
- NULL, cricket::Candidates()))));
+ EXPECT_TRUE(desc->AddTransportInfo(cricket::TransportInfo(
+ cricket::CN_AUDIO,
+ cricket::TransportDescription(
+ std::vector<std::string>(), kCandidateUfragVoice, kCandidatePwdVoice,
+ cricket::ICEMODE_FULL, cricket::CONNECTIONROLE_NONE, NULL))));
+ EXPECT_TRUE(desc->AddTransportInfo(cricket::TransportInfo(
+ cricket::CN_VIDEO,
+ cricket::TransportDescription(
+ std::vector<std::string>(), kCandidateUfragVideo, kCandidatePwdVideo,
+ cricket::ICEMODE_FULL, cricket::CONNECTIONROLE_NONE, NULL))));
return desc;
}
« no previous file with comments | « no previous file | talk/app/webrtc/webrtcsdp.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698