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

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

Issue 1240853002: Slice MD downloads into more components (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: license Created 5 years, 5 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
« no previous file with comments | « chrome/browser/resources/md_downloads/manager.css ('k') | chrome/browser/resources/md_downloads/manager.js » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: chrome/browser/resources/md_downloads/manager.html
diff --git a/chrome/browser/resources/md_downloads/manager.html b/chrome/browser/resources/md_downloads/manager.html
index 53b11d384b4e4e725d295523254691dcb7e88515..855a07caa4a138a0419841ae2a4c21dfd3754d2d 100644
--- a/chrome/browser/resources/md_downloads/manager.html
+++ b/chrome/browser/resources/md_downloads/manager.html
@@ -3,6 +3,20 @@
<link rel="import" href="chrome://resources/html/cr/ui.html">
<link rel="import" href="chrome://resources/html/cr/ui/command.html">
<link rel="import" href="chrome://resources/html/util.html">
+<link rel="import" href="chrome://resources/polymer/v1_0/polymer/polymer.html">
+<link rel="import" href="chrome://downloads/action_service.html">
<link rel="import" href="chrome://downloads/constants.html">
<link rel="import" href="chrome://downloads/item_view.html">
-<script src="chrome://downloads/manager.js"></script>
+<link rel="import" href="chrome://downloads/toolbar.html">
+
+<dom-module id="downloads-manager">
+ <template>
+ <downloads-toolbar id="toolbar"></downloads-toolbar>
+ <div id="downloads-list" hidden$="[[!hasDownloads_]]"></div>
+ <div id="no-downloads" hidden$="[[hasDownloads_]]"></div>
+ </template>
+ <link rel="import" type="css" href="chrome://resources/css/roboto.css">
+ <link rel="import" type="css" href="chrome://downloads/shared_style.css">
+ <link rel="import" type="css" href="chrome://downloads/manager.css">
+ <script src="chrome://downloads/manager.js"></script>
+</dom-module>
« no previous file with comments | « chrome/browser/resources/md_downloads/manager.css ('k') | chrome/browser/resources/md_downloads/manager.js » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698