| Index: chrome/browser/resources/net_internals/export_view.js
|
| diff --git a/chrome/browser/resources/net_internals/export_view.js b/chrome/browser/resources/net_internals/export_view.js
|
| index b447751ab6bd4b0e536d49dce80f18735915cb3b..72c5bb3cb21d67be98a51e9b7ce95241ff1ad99e 100644
|
| --- a/chrome/browser/resources/net_internals/export_view.js
|
| +++ b/chrome/browser/resources/net_internals/export_view.js
|
| @@ -113,7 +113,7 @@ var ExportView = (function() {
|
|
|
| // Clean up previous blob, if any, to reduce resource usage.
|
| if (this.lastBlobURL_) {
|
| - window.webkitURL.revokeObjectURL(this.lastBlobURL_);
|
| + window.URL.revokeObjectURL(this.lastBlobURL_);
|
| this.lastBlobURL_ = null;
|
| }
|
| this.createLogDump_(this.onLogDumpCreated_.bind(this));
|
| @@ -185,7 +185,7 @@ var ExportView = (function() {
|
| */
|
| onLogDumpCreated_: function(dumpText) {
|
| var textBlob = new Blob([dumpText], {type: 'octet/stream'});
|
| - this.lastBlobURL_ = window.webkitURL.createObjectURL(textBlob);
|
| + this.lastBlobURL_ = window.URL.createObjectURL(textBlob);
|
|
|
| // Update the anchor tag and simulate a click on it to start the
|
| // download.
|
|
|