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

Unified Diff: content/test/data/media/mediarecorder_test.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
« no previous file with comments | « content/test/data/media/datachannel_test.html ('k') | content/test/data/media/peerconnection-call.html » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: content/test/data/media/mediarecorder_test.html
diff --git a/content/test/data/media/mediarecorder_test.html b/content/test/data/media/mediarecorder_test.html
index 86e392d3507bec395857fd4c18afae353514ac78..fa58e53950e9879895ffc9037b28436b823e1846 100644
--- a/content/test/data/media/mediarecorder_test.html
+++ b/content/test/data/media/mediarecorder_test.html
@@ -42,8 +42,8 @@ function setupPeerConnection(stream) {
return new Promise(function(resolve, reject) {
var localStream = stream;
var remoteStream = null;
- var localPeerConnection = new webkitRTCPeerConnection(null);
- var remotePeerConnection = new webkitRTCPeerConnection(null);
+ var localPeerConnection = new RTCPeerConnection();
+ var remotePeerConnection = new RTCPeerConnection();
function createAnswer(description) {
remotePeerConnection.createAnswer(function(description) {
« no previous file with comments | « content/test/data/media/datachannel_test.html ('k') | content/test/data/media/peerconnection-call.html » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698