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

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: 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: 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);"
"}"

Powered by Google App Engine
This is Rietveld 408576698