OLD | NEW |
1 <link rel="import" href="chrome://resources/cr_elements/icons.html"> | 1 <link rel="import" href="chrome://resources/cr_elements/icons.html"> |
2 <link rel="import" href="chrome://resources/html/action_link.html"> | 2 <link rel="import" href="chrome://resources/html/action_link.html"> |
3 <link rel="import" href="chrome://resources/html/action_link_css.html"> | 3 <link rel="import" href="chrome://resources/html/action_link_css.html"> |
4 <link rel="import" href="chrome://resources/html/cr.html"> | 4 <link rel="import" href="chrome://resources/html/cr.html"> |
5 <link rel="import" href="chrome://resources/html/polymer.html"> | 5 <link rel="import" href="chrome://resources/html/polymer.html"> |
6 <link rel="import" href="chrome://resources/polymer/v1_0/iron-icon/iron-icon.htm
l"> | 6 <link rel="import" href="chrome://resources/polymer/v1_0/iron-icon/iron-icon.htm
l"> |
7 <link rel="import" href="chrome://resources/polymer/v1_0/paper-button/paper-butt
on.html"> | 7 <link rel="import" href="chrome://resources/polymer/v1_0/paper-button/paper-butt
on.html"> |
8 <link rel="import" href="chrome://resources/polymer/v1_0/paper-icon-button/paper
-icon-button-light.html"> | 8 <link rel="import" href="chrome://resources/polymer/v1_0/paper-icon-button/paper
-icon-button-light.html"> |
9 <link rel="import" href="chrome://resources/polymer/v1_0/paper-progress/paper-pr
ogress.html"> | 9 <link rel="import" href="chrome://resources/polymer/v1_0/paper-progress/paper-pr
ogress.html"> |
| 10 <link rel="import" href="chrome://resources/polymer/v1_0/paper-styles/color.html
"> |
10 <link rel="import" href="chrome://resources/polymer/v1_0/paper-styles/shadow.htm
l"> | 11 <link rel="import" href="chrome://resources/polymer/v1_0/paper-styles/shadow.htm
l"> |
11 <link rel="import" href="chrome://downloads/action_service.html"> | 12 <link rel="import" href="chrome://downloads/action_service.html"> |
12 <link rel="import" href="chrome://downloads/constants.html"> | 13 <link rel="import" href="chrome://downloads/constants.html"> |
13 <link rel="import" href="chrome://downloads/i18n_setup.html"> | 14 <link rel="import" href="chrome://downloads/i18n_setup.html"> |
14 <link rel="import" href="chrome://downloads/icons.html"> | 15 <link rel="import" href="chrome://downloads/icons.html"> |
15 | 16 |
16 <dom-module id="downloads-item"> | 17 <dom-module id="downloads-item"> |
17 <template> | 18 <template> |
18 <style include="action-link"> | 19 <style include="action-link"> |
19 :host { | 20 :host { |
(...skipping 292 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
312 on-tap="onRemoveTap_">✕</button> | 313 on-tap="onRemoveTap_">✕</button> |
313 </div> | 314 </div> |
314 | 315 |
315 <div id="incognito" title="$i18n{inIncognito}" hidden="[[!data.otr]]"> | 316 <div id="incognito" title="$i18n{inIncognito}" hidden="[[!data.otr]]"> |
316 </div> | 317 </div> |
317 </div> | 318 </div> |
318 | 319 |
319 </template> | 320 </template> |
320 <script src="chrome://downloads/item.js"></script> | 321 <script src="chrome://downloads/item.js"></script> |
321 </dom-module> | 322 </dom-module> |
OLD | NEW |