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

Unified Diff: chrome/test/data/webrtc/webrtc-simulcast.html

Issue 2055553003: Change the default rtcp mux policy from negotiate to require. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: fix test Created 4 years 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 | components/test_runner/mock_webrtc_peer_connection_handler.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: chrome/test/data/webrtc/webrtc-simulcast.html
diff --git a/chrome/test/data/webrtc/webrtc-simulcast.html b/chrome/test/data/webrtc/webrtc-simulcast.html
index b61e4b3303cb023b9191b1b03a427cf066a13c75..2ffa13aeedaf34487f8f1f30015fb7ea1f6c87cf 100644
--- a/chrome/test/data/webrtc/webrtc-simulcast.html
+++ b/chrome/test/data/webrtc/webrtc-simulcast.html
@@ -135,12 +135,12 @@ function trace(text) {
function initialize() {
trace('Setting up for a new call.');
- var servers = null;
+ var configs = {iceServers:[], rtcpMuxPolicy:'negotiate'};
var constraints = {'mandatory': {'DtlsSrtpKeyAgreement': false}};
- pcClient = new webkitRTCPeerConnection(servers, constraints);
+ pcClient = new webkitRTCPeerConnection(configs, constraints);
trace('Created local peer connection object pcClient');
pcClient.onicecandidate = onClientIceCandidate;
- pcServer = new webkitRTCPeerConnection(servers, constraints);
+ pcServer = new webkitRTCPeerConnection(configs, constraints);
trace('Created remote peer connection object pcServer');
pcServer.onicecandidate = onServerIceCandidate;
pcServer.onaddstream = onServerGotStream;
« no previous file with comments | « no previous file | components/test_runner/mock_webrtc_peer_connection_handler.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698