| OLD | NEW |
| 1 <link rel="import" href="chrome://resources/html/cr.html"> | 1 <link rel="import" href="chrome://resources/html/cr.html"> |
| 2 <link rel="import" href="chrome://resources/html/cr/ui.html"> | 2 <link rel="import" href="chrome://resources/html/cr/ui.html"> |
| 3 <link rel="import" href="chrome://resources/html/cr/ui/command.html"> | 3 <link rel="import" href="chrome://resources/html/cr/ui/command.html"> |
| 4 <link rel="import" href="chrome://resources/html/polymer.html"> | 4 <link rel="import" href="chrome://resources/html/polymer.html"> |
| 5 <link rel="import" href="chrome://resources/html/util.html"> | 5 <link rel="import" href="chrome://resources/html/util.html"> |
| 6 <link rel="import" href="chrome://resources/polymer/v1_0/iron-list/iron-list.htm
l"> | 6 <link rel="import" href="chrome://resources/polymer/v1_0/iron-list/iron-list.htm
l"> |
| 7 <link rel="import" href="chrome://downloads/action_service.html"> | 7 <link rel="import" href="chrome://downloads/action_service.html"> |
| 8 <link rel="import" href="chrome://downloads/constants.html"> | 8 <link rel="import" href="chrome://downloads/constants.html"> |
| 9 <link rel="import" href="chrome://downloads/i18n_setup.html"> | 9 <link rel="import" href="chrome://downloads/i18n_setup.html"> |
| 10 <link rel="import" href="chrome://downloads/item.html"> | 10 <link rel="import" href="chrome://downloads/item.html"> |
| (...skipping 80 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 91 height: 144px; /* Matches natural image height. */ | 91 height: 144px; /* Matches natural image height. */ |
| 92 margin-bottom: 32px; | 92 margin-bottom: 32px; |
| 93 } | 93 } |
| 94 </style> | 94 </style> |
| 95 | 95 |
| 96 <downloads-toolbar id="toolbar" spinner-active="{{spinnerActive_}}"> | 96 <downloads-toolbar id="toolbar" spinner-active="{{spinnerActive_}}"> |
| 97 </downloads-toolbar> | 97 </downloads-toolbar> |
| 98 <iron-list id="downloads-list" items="{{items_}}" | 98 <iron-list id="downloads-list" items="{{items_}}" |
| 99 hidden="[[!hasDownloads_]]"> | 99 hidden="[[!hasDownloads_]]"> |
| 100 <template> | 100 <template> |
| 101 <downloads-item data="[[item]]" hide-date="[[item.hideDate]]"> | 101 <downloads-item data="[[item]]"></downloads-item> |
| 102 </downloads-item> | |
| 103 </template> | 102 </template> |
| 104 </iron-list> | 103 </iron-list> |
| 105 <div id="no-downloads" hidden="[[hasDownloads_]]"> | 104 <div id="no-downloads" hidden="[[hasDownloads_]]"> |
| 106 <div> | 105 <div> |
| 107 <div class="illustration"></div> | 106 <div class="illustration"></div> |
| 108 <span><!-- Text populated dynamically. --></span> | 107 <span><!-- Text populated dynamically. --></span> |
| 109 </div> | 108 </div> |
| 110 </div> | 109 </div> |
| 111 </template> | 110 </template> |
| 112 <script src="chrome://downloads/manager.js"></script> | 111 <script src="chrome://downloads/manager.js"></script> |
| 113 </dom-module> | 112 </dom-module> |
| OLD | NEW |