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

Unified Diff: chrome/browser/resources/sync_internals/data.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/browser/resources/sync_internals/data.js
diff --git a/chrome/browser/resources/sync_internals/data.js b/chrome/browser/resources/sync_internals/data.js
index 1e68887a3a102af87e8e82784899d955602f0360..d5084db658058261ddc219ee53a59173b689526e 100644
--- a/chrome/browser/resources/sync_internals/data.js
+++ b/chrome/browser/resources/sync_internals/data.js
@@ -89,7 +89,7 @@ function isSelectedDatatype(node) {
function makeBlobUrl(data) {
var textBlob = new Blob([data], {type: 'octet/stream'});
- var blobUrl = window.webkitURL.createObjectURL(textBlob);
+ var blobUrl = window.URL.createObjectURL(textBlob);
return blobUrl;
}
« no previous file with comments | « chrome/browser/resources/profiler/profiler.js ('k') | chrome/browser/resources/translate_internals/translate_internals.js » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698