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

Unified Diff: ppapi/tests/test_video_source.cc

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 | « ppapi/tests/test_video_destination.cc ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: ppapi/tests/test_video_source.cc
diff --git a/ppapi/tests/test_video_source.cc b/ppapi/tests/test_video_source.cc
index b6587f870a47bef6452272c8bd8a38ad2462c90f..a6b729982d0920d9121285d8c00b2b31ae6a0944 100644
--- a/ppapi/tests/test_video_source.cc
+++ b/ppapi/tests/test_video_source.cc
@@ -94,7 +94,7 @@ std::string TestVideoSource::TestGetFrame() {
js_code += "var test_stream;"
"function gotStream(stream){"
" test_stream = stream;"
- " var url = webkitURL.createObjectURL(test_stream);"
+ " var url = URL.createObjectURL(test_stream);"
" var plugin = document.getElementById('plugin');"
" plugin.postMessage(url);"
"}"
« no previous file with comments | « ppapi/tests/test_video_destination.cc ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698