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

Unified Diff: third_party/WebKit/LayoutTests/fast/peerconnection/RTCPeerConnection-createOffer.html

Issue 2446173002: Use RTCPeerConnection instead of webkitRTCPeerConnection (Closed)
Patch Set: rebase Created 4 years, 2 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: third_party/WebKit/LayoutTests/fast/peerconnection/RTCPeerConnection-createOffer.html
diff --git a/third_party/WebKit/LayoutTests/fast/peerconnection/RTCPeerConnection-createOffer.html b/third_party/WebKit/LayoutTests/fast/peerconnection/RTCPeerConnection-createOffer.html
index 3e595a0dd1ee82d1b6ce39de4e56e81f9a9ddd11..a3ab32363746d295f5d9afb4ce1272eb771218ba 100644
--- a/third_party/WebKit/LayoutTests/fast/peerconnection/RTCPeerConnection-createOffer.html
+++ b/third_party/WebKit/LayoutTests/fast/peerconnection/RTCPeerConnection-createOffer.html
@@ -94,7 +94,7 @@ function createOfferSucceeded1(sessionDescription)
function testExecutionOrderClosedConnection()
{
- var localPeerConnection = new webkitRTCPeerConnection(null, null);
+ var localPeerConnection = new RTCPeerConnection();
localPeerConnection.close();
var counter = 0;
window.events = [];
@@ -112,7 +112,7 @@ function testExecutionOrderClosedConnection()
}
shouldNotThrow('testExecutionOrderClosedConnection()');
-pc = new webkitRTCPeerConnection(null);
+pc = new RTCPeerConnection();
shouldNotThrow('pc.createOffer(createOfferSucceeded1, unexpectedCallback, {voiceActivityDetection:true, iceRestart:true, offerToReceiveAudio:1, offerToReceiveVideo:1});');
window.jsTestIsAsync = true;

Powered by Google App Engine
This is Rietveld 408576698