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

Unified Diff: third_party/WebKit/LayoutTests/fast/peerconnection/RTCPeerConnection-ice.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-ice.html
diff --git a/third_party/WebKit/LayoutTests/fast/peerconnection/RTCPeerConnection-ice.html b/third_party/WebKit/LayoutTests/fast/peerconnection/RTCPeerConnection-ice.html
index 3c6b1f8669f86b9d16fb06b8a46428c9bf07e37a..288495523a7c67c2508a10a525b9ab89e0076cfe 100644
--- a/third_party/WebKit/LayoutTests/fast/peerconnection/RTCPeerConnection-ice.html
+++ b/third_party/WebKit/LayoutTests/fast/peerconnection/RTCPeerConnection-ice.html
@@ -8,7 +8,7 @@
<script>
async_test(function(t) {
- const localPeerConnection = new webkitRTCPeerConnection(null, null);
+ const localPeerConnection = new RTCPeerConnection();
localPeerConnection.close();
let counter = 0;
@@ -96,7 +96,7 @@ async_test(function(t) {
});
const calledCallbacks = [];
- const pc = new webkitRTCPeerConnection(null, null);
+ const pc = new RTCPeerConnection();
pc.oniceconnectionstatechange = t.step_func(onIceChange1);
}, 'Tests the RTCPeerConnection Ice functionality.');
</script>

Powered by Google App Engine
This is Rietveld 408576698