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

Unified Diff: third_party/WebKit/LayoutTests/fast/peerconnection/RTCPeerConnection-createAnswer.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-createAnswer.html
diff --git a/third_party/WebKit/LayoutTests/fast/peerconnection/RTCPeerConnection-createAnswer.html b/third_party/WebKit/LayoutTests/fast/peerconnection/RTCPeerConnection-createAnswer.html
index 64fb888b6caba2ff92a4db73be5f615c0f67c4ab..ec9ec92069016cedd7ed05571c974c421ae2d27a 100644
--- a/third_party/WebKit/LayoutTests/fast/peerconnection/RTCPeerConnection-createAnswer.html
+++ b/third_party/WebKit/LayoutTests/fast/peerconnection/RTCPeerConnection-createAnswer.html
@@ -36,7 +36,7 @@ function createOfferWithoutDescriptionFailed()
function testExecutionOrderClosedConnection()
{
- var localPeerConnection = new webkitRTCPeerConnection(null, null);
+ var localPeerConnection = new RTCPeerConnection();
localPeerConnection.close();
var counter = 0;
window.events = [];
@@ -54,7 +54,7 @@ function testExecutionOrderClosedConnection()
}
shouldNotThrow('testExecutionOrderClosedConnection()');
-pc = new webkitRTCPeerConnection(null, null);
+pc = new RTCPeerConnection();
pc.createOffer(unexpectedCallback, createOfferWithoutDescriptionFailed);
window.jsTestIsAsync = true;

Powered by Google App Engine
This is Rietveld 408576698