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

Unified Diff: third_party/WebKit/LayoutTests/fast/peerconnection/RTCPeerConnection-dtmf.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-dtmf.html
diff --git a/third_party/WebKit/LayoutTests/fast/peerconnection/RTCPeerConnection-dtmf.html b/third_party/WebKit/LayoutTests/fast/peerconnection/RTCPeerConnection-dtmf.html
index 8d0085990c7e70217c25ea9c2ac4522619d162bf..9dd2f55d8071af14656d189b1ad07d16e496e980 100644
--- a/third_party/WebKit/LayoutTests/fast/peerconnection/RTCPeerConnection-dtmf.html
+++ b/third_party/WebKit/LayoutTests/fast/peerconnection/RTCPeerConnection-dtmf.html
@@ -53,7 +53,7 @@ function gotStream(s) {
shouldBe('stream.getAudioTracks().length', '1');
shouldBe('stream.getVideoTracks().length', '0');
- pc = new webkitRTCPeerConnection(null, null);
+ pc = new RTCPeerConnection();
pc.oniceconnectionstatechange = pc_onicechange;
}

Powered by Google App Engine
This is Rietveld 408576698