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

Unified Diff: content/test/data/media/getusermedia.html

Issue 121203002: Use window.URL instead of window.webkitURL. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: window.URL -> URL in user_images_grid.js Created 6 years, 11 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/browser/resources/media/dump_creator.js ('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/getusermedia.html
diff --git a/content/test/data/media/getusermedia.html b/content/test/data/media/getusermedia.html
index e848715e486a6498718a6b7c56886f0c763b9ce0..92037cfb53752b854b205e66e6a1587f8776a1de 100644
--- a/content/test/data/media/getusermedia.html
+++ b/content/test/data/media/getusermedia.html
@@ -71,7 +71,7 @@
function plugStreamIntoLocalView(stream) {
gLocalStream = stream;
- var localStreamUrl = webkitURL.createObjectURL(stream);
+ var localStreamUrl = URL.createObjectURL(stream);
$('local-view').src = localStreamUrl;
}
@@ -100,7 +100,7 @@
expectEquals(new_stream.getAudioTracks().length, 0);
}
- var newStreamUrl = webkitURL.createObjectURL(new_stream);
+ var newStreamUrl = URL.createObjectURL(new_stream);
$('local-view').src = newStreamUrl;
waitForVideo('local-view');
}
« no previous file with comments | « content/browser/resources/media/dump_creator.js ('k') | content/test/data/media/peerconnection-call.html » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698