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

Unified Diff: chrome/test/data/webrtc/manual/peerconnection-multi.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: chrome/test/data/webrtc/manual/peerconnection-multi.html
diff --git a/chrome/test/data/webrtc/manual/peerconnection-multi.html b/chrome/test/data/webrtc/manual/peerconnection-multi.html
index 2ee6475ba4502e2b8e1e18c299ded4c71967b2cf..323a266d80d7f98ae324ce841866394978b49ecc 100644
--- a/chrome/test/data/webrtc/manual/peerconnection-multi.html
+++ b/chrome/test/data/webrtc/manual/peerconnection-multi.html
@@ -66,7 +66,7 @@
}
function play(stream, videoElement) {
- var streamUrl = webkitURL.createObjectURL(stream);
+ var streamUrl = URL.createObjectURL(stream);
$(videoElement).src = streamUrl;
}
@@ -279,4 +279,4 @@
</tr>
</table>
</body>
-</html>
+</html>

Powered by Google App Engine
This is Rietveld 408576698