| Index: content/test/data/media/peerconnection-call.html
|
| diff --git a/content/test/data/media/peerconnection-call.html b/content/test/data/media/peerconnection-call.html
|
| index c592ab2c9b708191a6dc1eca825e8c4d217bd047..781b86968836ab3fb4b5f6762670dfa6d945267c 100644
|
| --- a/content/test/data/media/peerconnection-call.html
|
| +++ b/content/test/data/media/peerconnection-call.html
|
| @@ -518,7 +518,7 @@
|
| }
|
|
|
| function callWithDevicePermissionGranted() {
|
| - var pc = new webkitRTCPeerConnection(null, null);
|
| + var pc = new RTCPeerConnection();
|
| gatherIceCandidates(pc, function(candidates) {
|
| var hasLoopbackCandidate = false;
|
| assertEquals(candidates.length > 0, true);
|
| @@ -534,7 +534,7 @@
|
| }
|
|
|
| function callWithNoCandidateExpected() {
|
| - var pc = new webkitRTCPeerConnection({iceServers:[]}, null);
|
| + var pc = new RTCPeerConnection();
|
| gatherIceCandidates(pc, function(candidates) {
|
| assertEquals(candidates.length, 0);
|
| reportTestSuccess();
|
| @@ -542,7 +542,7 @@
|
| }
|
|
|
| function callAndExpectNonLoopbackCandidates() {
|
| - var pc = new webkitRTCPeerConnection(null, null);
|
| + var pc = new RTCPeerConnection();
|
| gatherIceCandidates(pc, function(candidates) {
|
| var hasCandidate = false;
|
| assertEquals(candidates.length > 0, true);
|
|
|