| 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/cr.html"> | 2 <link rel="import" href="chrome://resources/html/cr.html"> |
| 3 <link rel="import" href="chrome://resources/html/polymer.html"> | 3 <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"> | 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/paper-button/paper-butt
on.html"> | 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-icon-button/paper
-icon-button-light.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-progress/paper-pr
ogress.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-styles/shadow.htm
l"> |
| 8 <link rel="import" href="chrome://downloads/action_service.html"> | 9 <link rel="import" href="chrome://downloads/action_service.html"> |
| 9 <link rel="import" href="chrome://downloads/constants.html"> | 10 <link rel="import" href="chrome://downloads/constants.html"> |
| 10 <link rel="import" href="chrome://downloads/i18n_setup.html"> | 11 <link rel="import" href="chrome://downloads/i18n_setup.html"> |
| 11 <link rel="import" href="chrome://downloads/icons.html"> | 12 <link rel="import" href="chrome://downloads/icons.html"> |
| 12 | 13 |
| 13 <dom-module id="downloads-item"> | 14 <dom-module id="downloads-item"> |
| 14 <template> | 15 <template> |
| 15 <h3 id="date">[[computeDate_(data.hideDate, data.since_string, data.date_str
ing)]]</h3> | 16 <h3 id="date">[[computeDate_(data.hideDate, data.since_string, data.date_str
ing)]]</h3> |
| 16 | 17 |
| 17 <div id="content" on-dragstart="onDragStart_" | 18 <div id="content" on-dragstart="onDragStart_" |
| (...skipping 79 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 97 <div id="incognito" title="$i18n{inIncognito}" hidden="[[!data.otr]]"> | 98 <div id="incognito" title="$i18n{inIncognito}" hidden="[[!data.otr]]"> |
| 98 </div> | 99 </div> |
| 99 </div> | 100 </div> |
| 100 | 101 |
| 101 </template> | 102 </template> |
| 102 <link rel="import" type="css" href="chrome://resources/css/action_link.css"> | 103 <link rel="import" type="css" href="chrome://resources/css/action_link.css"> |
| 103 <link rel="import" type="css" href="chrome://downloads/shared_style.css"> | 104 <link rel="import" type="css" href="chrome://downloads/shared_style.css"> |
| 104 <link rel="import" type="css" href="chrome://downloads/item.css"> | 105 <link rel="import" type="css" href="chrome://downloads/item.css"> |
| 105 <script src="chrome://downloads/item.js"></script> | 106 <script src="chrome://downloads/item.js"></script> |
| 106 </dom-module> | 107 </dom-module> |
| OLD | NEW |