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

Unified Diff: chrome/test/data/extensions/api_test/tab_capture/performance.js

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
Index: chrome/test/data/extensions/api_test/tab_capture/performance.js
diff --git a/chrome/test/data/extensions/api_test/tab_capture/performance.js b/chrome/test/data/extensions/api_test/tab_capture/performance.js
index b020075e766ee5aba7fc2028551b2cb254b1d104..678a3bcf840f46ba0f4593567cd12727d36a6fdd 100644
--- a/chrome/test/data/extensions/api_test/tab_capture/performance.js
+++ b/chrome/test/data/extensions/api_test/tab_capture/performance.js
@@ -27,7 +27,7 @@ function TestStream(stream) {
var start_time = new Date().getTime();
// Play the LocalMediaStream in the video element.
- video.src = webkitURL.createObjectURL(stream);
+ video.src = URL.createObjectURL(stream);
video.play();
var frame = 0;

Powered by Google App Engine
This is Rietveld 408576698