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

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

Issue 1656883005: MD Downloads: fix the compiled_resources2.gyp compile (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@reentrant-reproduce
Patch Set: merge Created 4 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/md_downloads/manager.js
diff --git a/chrome/browser/resources/md_downloads/manager.js b/chrome/browser/resources/md_downloads/manager.js
index e0bb5f94e66eb03e757a124d9bfbb03d8e310f7a..4700cff65a9dc23dbca583361ca47aefa420a613 100644
--- a/chrome/browser/resources/md_downloads/manager.js
+++ b/chrome/browser/resources/md_downloads/manager.js
@@ -149,7 +149,8 @@ cr.define('downloads', function() {
updateItem_: function(index, data) {
this.set('items_.' + index, data);
this.updateHideDates_(index, index);
- this.$['downloads-list'].updateSizeForItem(index);
+ var list = /** @type {!IronListElement} */(this.$['downloads-list']);
+ list.updateSizeForItem(index);
},
});

Powered by Google App Engine
This is Rietveld 408576698