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

Unified Diff: chrome/browser/resources/md_downloads/manager.js

Issue 2597573002: MD History/Downloads: convert .bind(this) and function property values to use => (Closed)
Patch Set: Created 4 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: chrome/browser/resources/md_downloads/manager.js
diff --git a/chrome/browser/resources/md_downloads/manager.js b/chrome/browser/resources/md_downloads/manager.js
index 62b6b3492368a95b62ff608fb8cb03c170e82078..6bffe40ade7dcf505fc5baac37afd8529e30a4a5 100644
--- a/chrome/browser/resources/md_downloads/manager.js
+++ b/chrome/browser/resources/md_downloads/manager.js
@@ -29,7 +29,7 @@ cr.define('downloads', function() {
/** @private {!Array<!downloads.Data>} */
items_: {
type: Array,
- value: function() { return []; },
+ value: () => [],
},
/** @private */

Powered by Google App Engine
This is Rietveld 408576698