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

Unified Diff: third_party/WebKit/LayoutTests/fast/peerconnection/RTCPeerConnection-createOffer-promise.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-promise.html
diff --git a/third_party/WebKit/LayoutTests/fast/peerconnection/RTCPeerConnection-createOffer-promise.html b/third_party/WebKit/LayoutTests/fast/peerconnection/RTCPeerConnection-createOffer-promise.html
index a4ac6d18ab96498a50cf1471c4a4dde5ada0f1b0..4d967ea3a7bf6287cec919651b4ee1197d34640f 100644
--- a/third_party/WebKit/LayoutTests/fast/peerconnection/RTCPeerConnection-createOffer-promise.html
+++ b/third_party/WebKit/LayoutTests/fast/peerconnection/RTCPeerConnection-createOffer-promise.html
@@ -14,7 +14,7 @@
// runner.
defaultError = new DOMException('TEST_ERROR', 'OperationError')
- pc = new webkitRTCPeerConnection(null);
+ pc = new RTCPeerConnection();
// Test that creating an offer with voiceActivityDetection, iceRestart,
// offerToReceiveAudio and offerToReceiveVideo returns an accepted promise.
@@ -69,7 +69,7 @@
}, 'createOffer(1)' );
// Test closed connection
- closedPC = new webkitRTCPeerConnection(null);
+ closedPC = new RTCPeerConnection();
closedPC.close();
promise_test(function() {
var invalidStateError = new DOMException('', 'InvalidStateError');

Powered by Google App Engine
This is Rietveld 408576698