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

Unified Diff: third_party/WebKit/LayoutTests/fast/peerconnection/RTCPeerConnection-events.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-events.html
diff --git a/third_party/WebKit/LayoutTests/fast/peerconnection/RTCPeerConnection-events.html b/third_party/WebKit/LayoutTests/fast/peerconnection/RTCPeerConnection-events.html
index 994f40b72a361a7b85008fd2210af60679a0cd96..ab38bb1285f59d3b002c7b8cb3c43758af58fdf8 100644
--- a/third_party/WebKit/LayoutTests/fast/peerconnection/RTCPeerConnection-events.html
+++ b/third_party/WebKit/LayoutTests/fast/peerconnection/RTCPeerConnection-events.html
@@ -41,7 +41,7 @@ function gotStream(s) {
testPassed('gotStream was called.');
stream = s;
- pc = new webkitRTCPeerConnection(null, null);
+ pc = new RTCPeerConnection();
pc.onnegotiationneeded = onNegotiationNeeded;
pc.addStream(stream);

Powered by Google App Engine
This is Rietveld 408576698