| 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/cr/ui/focus_row.html"> | 2 <link rel="import" href="chrome://resources/html/cr/ui/focus_row.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-styles/shadow.htm
l"> | 7 <link rel="import" href="chrome://resources/polymer/v1_0/paper-styles/shadow.htm
l"> |
| 8 <link rel="import" href="chrome://resources/html/icon.html"> | 8 <link rel="import" href="chrome://resources/html/icon.html"> |
| 9 <link rel="import" href="chrome://resources/html/util.html"> | 9 <link rel="import" href="chrome://resources/html/util.html"> |
| 10 <link rel="import" href="chrome://history/browser_service.html"> | 10 <link rel="import" href="chrome://chrome/history/browser_service.html"> |
| 11 <link rel="import" href="chrome://history/constants.html"> | 11 <link rel="import" href="chrome://chrome/history/constants.html"> |
| 12 <link rel="import" href="chrome://history/searched_label.html"> | 12 <link rel="import" href="chrome://chrome/history/searched_label.html"> |
| 13 <link rel="import" href="chrome://history/shared_style.html"> | 13 <link rel="import" href="chrome://chrome/history/shared_style.html"> |
| 14 | 14 |
| 15 <dom-module id="history-item"> | 15 <dom-module id="history-item"> |
| 16 <template> | 16 <template> |
| 17 <style include="shared-style"> | 17 <style include="shared-style"> |
| 18 :host { | 18 :host { |
| 19 --checked-color: rgb(68, 136, 255); | 19 --checked-color: rgb(68, 136, 255); |
| 20 display: block; | 20 display: block; |
| 21 outline: none; | 21 outline: none; |
| 22 } | 22 } |
| 23 | 23 |
| (...skipping 221 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 245 on-tap="onMenuButtonTap_"> | 245 on-tap="onMenuButtonTap_"> |
| 246 <div></div> | 246 <div></div> |
| 247 <div></div> | 247 <div></div> |
| 248 <div></div> | 248 <div></div> |
| 249 </button> | 249 </button> |
| 250 </div> | 250 </div> |
| 251 <div id="time-gap-separator" hidden="[[!hasTimeGap]]"></div> | 251 <div id="time-gap-separator" hidden="[[!hasTimeGap]]"></div> |
| 252 </div> | 252 </div> |
| 253 </div> | 253 </div> |
| 254 </template> | 254 </template> |
| 255 <script src="chrome://history/history_item.js"></script> | 255 <script src="chrome://chrome/history/history_item.js"></script> |
| 256 </dom-module> | 256 </dom-module> |
| OLD | NEW |