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

Unified Diff: content/test/data/media/peerconnection-call.html

Issue 121203002: Use window.URL instead of window.webkitURL. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 7 years 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: content/test/data/media/peerconnection-call.html
diff --git a/content/test/data/media/peerconnection-call.html b/content/test/data/media/peerconnection-call.html
index afd8b0318795ca2a962104034c842b913431fccf..478a0d2d02b5ccfd973ccc78f6f50b58736c7cd8 100644
--- a/content/test/data/media/peerconnection-call.html
+++ b/content/test/data/media/peerconnection-call.html
@@ -498,7 +498,7 @@
}
function displayAndRemember(localStream) {
- var localStreamUrl = webkitURL.createObjectURL(localStream);
+ var localStreamUrl = URL.createObjectURL(localStream);
$('local-view').src = localStreamUrl;
gLocalStream = localStream;
@@ -709,7 +709,7 @@
return;
}
gRemoteStreams[target] = e.stream;
- var remoteStreamUrl = webkitURL.createObjectURL(e.stream);
+ var remoteStreamUrl = URL.createObjectURL(e.stream);
var remoteVideo = $(target);
remoteVideo.src = remoteStreamUrl;
}

Powered by Google App Engine
This is Rietveld 408576698