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

Unified Diff: chrome/browser/ui/webui/downloads_dom_handler.cc

Issue 1375333004: MD Downloads: use <iron-list> to render download items (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@iron-list2
Patch Set: merge Created 5 years, 2 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/ui/webui/downloads_dom_handler.cc
diff --git a/chrome/browser/ui/webui/downloads_dom_handler.cc b/chrome/browser/ui/webui/downloads_dom_handler.cc
index 0ce308cf19ff74995a8aad7d3e3e66ebd8139d58..ddac1a467a1f28b70bb1f123f681049fdf7314f4 100644
--- a/chrome/browser/ui/webui/downloads_dom_handler.cc
+++ b/chrome/browser/ui/webui/downloads_dom_handler.cc
@@ -64,7 +64,7 @@ namespace {
// Maximum number of downloads to show. TODO(glen): Remove this and instead
// stuff the downloads down the pipe slowly.
size_t MaxNumberOfDownloads() {
- return MdDownloadsEnabled() ? 50 : 150;
+ return MdDownloadsEnabled() ? 300 : 150;
esprehn 2015/10/03 05:11:54 woah!
Dan Beam 2015/10/04 08:27:08 Acknowledged.
}
enum DownloadsDOMEvent {

Powered by Google App Engine
This is Rietveld 408576698