| OLD | NEW |
| 1 <link rel="import" href="chrome://resources/cr_elements/icons.html"> |
| 1 <link rel="import" href="chrome://resources/html/polymer.html"> | 2 <link rel="import" href="chrome://resources/html/polymer.html"> |
| 2 <link rel="import" href="chrome://resources/polymer/v1_0/iron-flex-layout/iron-f
lex-layout.html"> | 3 <link rel="import" href="chrome://resources/polymer/v1_0/iron-flex-layout/iron-f
lex-layout.html"> |
| 3 <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"> |
| 4 <link rel="import" href="chrome://resources/polymer/v1_0/iron-icons/iron-icons.h
tml"> | |
| 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-checkbox/paper-ch
eckbox.html"> | 6 <link rel="import" href="chrome://resources/polymer/v1_0/paper-checkbox/paper-ch
eckbox.html"> |
| 7 <link rel="import" href="chrome://resources/polymer/v1_0/paper-icon-button/paper
-icon-button.html"> | 7 <link rel="import" href="chrome://resources/polymer/v1_0/paper-icon-button/paper
-icon-button.html"> |
| 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/shared_style.html"> | 10 <link rel="import" href="chrome://history/shared_style.html"> |
| 11 | 11 |
| 12 <dom-module id="history-item"> | 12 <dom-module id="history-item"> |
| 13 <template> | 13 <template> |
| 14 <style include="shared-style"> | 14 <style include="shared-style"> |
| (...skipping 109 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 124 <div id="item-container"> | 124 <div id="item-container"> |
| 125 <paper-checkbox id="checkbox" on-tap="onCheckboxSelected_" | 125 <paper-checkbox id="checkbox" on-tap="onCheckboxSelected_" |
| 126 checked="{{selected}}" disabled="[[selectionNotAllowed_()]]"> | 126 checked="{{selected}}" disabled="[[selectionNotAllowed_()]]"> |
| 127 </paper-checkbox> | 127 </paper-checkbox> |
| 128 <span id="time-accessed">[[item.readableTimestamp]]</span> | 128 <span id="time-accessed">[[item.readableTimestamp]]</span> |
| 129 <div class="website-icon" id="icon"></div> | 129 <div class="website-icon" id="icon"></div> |
| 130 <div id="title-and-domain"> | 130 <div id="title-and-domain"> |
| 131 <a href="[[item.url]]" id="title" class="website-title"></a> | 131 <a href="[[item.url]]" id="title" class="website-title"></a> |
| 132 <span id="domain">[[item.domain]]</span> | 132 <span id="domain">[[item.domain]]</span> |
| 133 </div> | 133 </div> |
| 134 <iron-icon icon="star" id="bookmark-star"></iron-icon> | 134 <iron-icon icon="cr:star" id="bookmark-star"></iron-icon> |
| 135 <paper-icon-button icon="more-vert" id="menu-button" | 135 <paper-icon-button icon="cr:more-vert" id="menu-button" |
| 136 on-tap="onMenuButtonTap_"> | 136 on-tap="onMenuButtonTap_"> |
| 137 </paper-icon-button> | 137 </paper-icon-button> |
| 138 </div> | 138 </div> |
| 139 <template is="dom-if" if="[[hasTimeGap]]"> | 139 <template is="dom-if" if="[[hasTimeGap]]"> |
| 140 <div id="time-gap-separator"></div> | 140 <div id="time-gap-separator"></div> |
| 141 </template> | 141 </template> |
| 142 </div> | 142 </div> |
| 143 </template> | 143 </template> |
| 144 <script src="chrome://history/history_item.js"></script> | 144 <script src="chrome://history/history_item.js"></script> |
| 145 </dom-module> | 145 </dom-module> |
| OLD | NEW |