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

Unified Diff: webrtc/api/peerconnectioninterface_unittest.cc

Issue 2043193003: Make the default value of rtcp-mux policy to required. (Closed) Base URL: https://chromium.googlesource.com/external/webrtc.git@master
Patch Set: Change the java api. Created 4 years, 6 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
Index: webrtc/api/peerconnectioninterface_unittest.cc
diff --git a/webrtc/api/peerconnectioninterface_unittest.cc b/webrtc/api/peerconnectioninterface_unittest.cc
index 71233e06081fc5d703712aaf3b6b2bcdb3be61c9..06068fd6625cd2b70fe78087923d8049ab65880b 100644
--- a/webrtc/api/peerconnectioninterface_unittest.cc
+++ b/webrtc/api/peerconnectioninterface_unittest.cc
@@ -603,6 +603,7 @@ class PeerConnectionInterfaceTest : public testing::Test {
nullptr) && dtls) {
cert_generator.reset(new FakeRTCCertificateGenerator());
}
+ config.rtcp_mux_policy = PeerConnectionInterface::kRtcpMuxPolicyNegotiate;
honghaiz3 2016/06/22 16:58:44 Is there any reason to set kRtcpMuxPolicyNegotiate
Zhi Huang 2016/06/22 21:41:28 Some unit tests rely on the assumption that the po
pc_ = pc_factory_->CreatePeerConnection(
config, constraints, std::move(port_allocator),
std::move(cert_generator), &observer_);

Powered by Google App Engine
This is Rietveld 408576698