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

Unified Diff: third_party/WebKit/LayoutTests/fast/peerconnection/RTCPeerConnection-AddRemoveStream.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-AddRemoveStream.html
diff --git a/third_party/WebKit/LayoutTests/fast/peerconnection/RTCPeerConnection-AddRemoveStream.html b/third_party/WebKit/LayoutTests/fast/peerconnection/RTCPeerConnection-AddRemoveStream.html
index 9190a62c9af4110421d0bc9cd424888046ee2254..e43377b7c51c663a847c3d99ba5cbea9b6e962e6 100644
--- a/third_party/WebKit/LayoutTests/fast/peerconnection/RTCPeerConnection-AddRemoveStream.html
+++ b/third_party/WebKit/LayoutTests/fast/peerconnection/RTCPeerConnection-AddRemoveStream.html
@@ -16,7 +16,7 @@ navigator.webkitGetUserMedia(options, (stream1) => {
navigator.webkitGetUserMedia(options, (stream2) => {
assert_false(stream1.id === stream2.id);
- pc = new webkitRTCPeerConnection(null, null);
+ pc = new RTCPeerConnection();
pc.onnegotiationneeded = (event) => {
assert_equals(pc.getStreamById(stream1.id), stream1);

Powered by Google App Engine
This is Rietveld 408576698