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

Unified Diff: third_party/WebKit/LayoutTests/fast/mediastream/constructors-expected.txt

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/mediastream/constructors-expected.txt
diff --git a/third_party/WebKit/LayoutTests/fast/mediastream/constructors-expected.txt b/third_party/WebKit/LayoutTests/fast/mediastream/constructors-expected.txt
index 81cbfc7f9f85d76afbc339fa968de2c027c6a781..1f310d687414d2461a8ef9fee10550df67697d04 100644
--- a/third_party/WebKit/LayoutTests/fast/mediastream/constructors-expected.txt
+++ b/third_party/WebKit/LayoutTests/fast/mediastream/constructors-expected.txt
@@ -3,13 +3,13 @@ Tests the JSEP PeerConnection related constructors.
On success, you will see a series of "PASS" messages, followed by "TEST COMPLETE".
-PASS typeof webkitRTCPeerConnection === 'function' is true
+PASS typeof RTCPeerConnection === 'function' is true
PASS typeof RTCSessionDescription === 'function' is true
PASS typeof RTCIceCandidate === 'function' is true
-PASS webkitRTCPeerConnection() threw exception TypeError: Failed to construct 'RTCPeerConnection': Please use the 'new' operator, this DOM object constructor cannot be called as a function..
+PASS RTCPeerConnection() threw exception TypeError: Failed to construct 'RTCPeerConnection': Please use the 'new' operator, this DOM object constructor cannot be called as a function..
PASS RTCSessionDescription() threw exception TypeError: Failed to construct 'RTCSessionDescription': Please use the 'new' operator, this DOM object constructor cannot be called as a function..
PASS RTCIceCandidate() threw exception TypeError: Failed to construct 'RTCIceCandidate': Please use the 'new' operator, this DOM object constructor cannot be called as a function..
-PASS new webkitRTCPeerConnection({iceServers:[{url:'stun://foobar.com:12345'}]}, null); did not throw exception.
+PASS new RTCPeerConnection({iceServers:[{url:'stun://foobar.com:12345'}]}, null); did not throw exception.
PASS new RTCSessionDescription({type:'offer',sdp:'foobar'}); did not throw exception.
PASS new RTCIceCandidate({candidate:'foo'}); did not throw exception.
PASS successfullyParsed is true

Powered by Google App Engine
This is Rietveld 408576698