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

Unified Diff: third_party/WebKit/LayoutTests/fast/peerconnection/RTCPeerConnection-remotestreams.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-remotestreams.html
diff --git a/third_party/WebKit/LayoutTests/fast/peerconnection/RTCPeerConnection-remotestreams.html b/third_party/WebKit/LayoutTests/fast/peerconnection/RTCPeerConnection-remotestreams.html
index b2690cbd2aa20cab9d4004bfd0c8db535a489040..a693e494fe253c8dd4e6fad65db1ee435727413d 100644
--- a/third_party/WebKit/LayoutTests/fast/peerconnection/RTCPeerConnection-remotestreams.html
+++ b/third_party/WebKit/LayoutTests/fast/peerconnection/RTCPeerConnection-remotestreams.html
@@ -28,7 +28,7 @@ function requestSucceeded2()
{
testPassed('requestSucceeded was called.');
shouldBeEqualToNumber('pc.getRemoteStreams().length', 0);
- finishJSTest();
+ finishJSTest();
}
function requestSucceeded1()
@@ -73,7 +73,7 @@ function onRemoveStream(event) {
shouldBeFalse('event.stream.active')
}
-pc = new webkitRTCPeerConnection(null, null);
+pc = new RTCPeerConnection();
pc.onaddstream = onAddStream;
pc.onremovestream = onRemoveStream;
getUserMedia({audio:true, video:true}, gotStream);

Powered by Google App Engine
This is Rietveld 408576698