| OLD | NEW |
| 1 <link rel="import" href="chrome://resources/html/action_link.html"> | 1 <link rel="import" href="chrome://resources/html/action_link.html"> |
| 2 <link rel="import" href="chrome://resources/html/action_link_css.html"> |
| 2 <link rel="import" href="chrome://resources/html/cr.html"> | 3 <link rel="import" href="chrome://resources/html/cr.html"> |
| 3 <link rel="import" href="chrome://resources/html/polymer.html"> | 4 <link rel="import" href="chrome://resources/html/polymer.html"> |
| 4 <link rel="import" href="chrome://resources/polymer/v1_0/iron-icon/iron-icon.htm
l"> | 5 <link rel="import" href="chrome://resources/polymer/v1_0/iron-icon/iron-icon.htm
l"> |
| 5 <link rel="import" href="chrome://resources/polymer/v1_0/paper-button/paper-butt
on.html"> | 6 <link rel="import" href="chrome://resources/polymer/v1_0/paper-button/paper-butt
on.html"> |
| 6 <link rel="import" href="chrome://resources/polymer/v1_0/paper-icon-button/paper
-icon-button-light.html"> | 7 <link rel="import" href="chrome://resources/polymer/v1_0/paper-icon-button/paper
-icon-button-light.html"> |
| 7 <link rel="import" href="chrome://resources/polymer/v1_0/paper-progress/paper-pr
ogress.html"> | 8 <link rel="import" href="chrome://resources/polymer/v1_0/paper-progress/paper-pr
ogress.html"> |
| 8 <link rel="import" href="chrome://resources/polymer/v1_0/paper-styles/shadow.htm
l"> | 9 <link rel="import" href="chrome://resources/polymer/v1_0/paper-styles/shadow.htm
l"> |
| 9 <link rel="import" href="chrome://downloads/action_service.html"> | 10 <link rel="import" href="chrome://downloads/action_service.html"> |
| 10 <link rel="import" href="chrome://downloads/constants.html"> | 11 <link rel="import" href="chrome://downloads/constants.html"> |
| 11 <link rel="import" href="chrome://downloads/i18n_setup.html"> | 12 <link rel="import" href="chrome://downloads/i18n_setup.html"> |
| 12 <link rel="import" href="chrome://downloads/icons.html"> | 13 <link rel="import" href="chrome://downloads/icons.html"> |
| 13 | 14 |
| 14 <dom-module id="downloads-item"> | 15 <dom-module id="downloads-item"> |
| 15 <template> | 16 <template> |
| 16 <style> | 17 <style include="action-link"> |
| 17 :host { | 18 :host { |
| 18 display: flex; | 19 display: flex; |
| 19 flex-direction: column; | 20 flex-direction: column; |
| 20 } | 21 } |
| 21 | 22 |
| 22 [hidden] { | 23 [hidden] { |
| 23 display: none !important; | 24 display: none !important; |
| 24 } | 25 } |
| 25 | 26 |
| 26 paper-button { | 27 paper-button { |
| (...skipping 281 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 308 title="$i18n{controlRemoveFromList}" | 309 title="$i18n{controlRemoveFromList}" |
| 309 style$="[[computeRemoveStyle_(isDangerous_, showCancel_)]]" | 310 style$="[[computeRemoveStyle_(isDangerous_, showCancel_)]]" |
| 310 on-tap="onRemoveTap_">✕</button> | 311 on-tap="onRemoveTap_">✕</button> |
| 311 </div> | 312 </div> |
| 312 | 313 |
| 313 <div id="incognito" title="$i18n{inIncognito}" hidden="[[!data.otr]]"> | 314 <div id="incognito" title="$i18n{inIncognito}" hidden="[[!data.otr]]"> |
| 314 </div> | 315 </div> |
| 315 </div> | 316 </div> |
| 316 | 317 |
| 317 </template> | 318 </template> |
| 318 <link rel="import" type="css" href="chrome://resources/css/action_link.css"> | |
| 319 <script src="chrome://downloads/item.js"></script> | 319 <script src="chrome://downloads/item.js"></script> |
| 320 </dom-module> | 320 </dom-module> |
| OLD | NEW |