Index: chrome/common/extensions/docs/templates/articles/app_codelab8_webresources.html |
diff --git a/chrome/common/extensions/docs/templates/articles/app_codelab8_webresources.html b/chrome/common/extensions/docs/templates/articles/app_codelab8_webresources.html |
index 880bab9c62ad703caca2cab41f2cc44134d701f8..b3cdf1cb36d2086b9035bec9258fd7161b7a478c 100644 |
--- a/chrome/common/extensions/docs/templates/articles/app_codelab8_webresources.html |
+++ b/chrome/common/extensions/docs/templates/articles/app_codelab8_webresources.html |
@@ -223,7 +223,7 @@ var loadImage = function(uri, callback) { |
var xhr = new XMLHttpRequest(); |
xhr.responseType = 'blob'; |
xhr.onload = function() { |
- callback(window.webkitURL.createObjectURL(xhr.response), uri); |
+ callback(window.URL.createObjectURL(xhr.response), uri); |
} |
xhr.open('GET', uri, true); |
xhr.send(); |