| 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-styles/shadow.htm
l"> | 5 <link rel="import" href="chrome://resources/polymer/v1_0/paper-styles/shadow.htm
l"> |
| 6 <link rel="import" href="chrome://resources/html/icon.html"> | 6 <link rel="import" href="chrome://resources/html/icon.html"> |
| 7 <link rel="import" href="chrome://resources/html/util.html"> | 7 <link rel="import" href="chrome://resources/html/util.html"> |
| 8 <link rel="import" href="chrome://history/browser_service.html"> | 8 <link rel="import" href="chrome://history/browser_service.html"> |
| 9 <link rel="import" href="chrome://history/constants.html"> | 9 <link rel="import" href="chrome://history/constants.html"> |
| 10 <link rel="import" href="chrome://history/searched_label.html"> | 10 <link rel="import" href="chrome://history/searched_label.html"> |
| (...skipping 221 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 232 title="[[item.title]]" on-click="onLinkClick_" | 232 title="[[item.title]]" on-click="onLinkClick_" |
| 233 on-contextmenu="onLinkRightClick_"> | 233 on-contextmenu="onLinkRightClick_"> |
| 234 <history-searched-label title="[[item.title]]" | 234 <history-searched-label title="[[item.title]]" |
| 235 search-term="[[searchTerm]]"></history-searched-label> | 235 search-term="[[searchTerm]]"></history-searched-label> |
| 236 </a> | 236 </a> |
| 237 <span id="domain">[[item.domain]]</span> | 237 <span id="domain">[[item.domain]]</span> |
| 238 </div> | 238 </div> |
| 239 <div id="star-container"> | 239 <div id="star-container"> |
| 240 <template is="dom-if" if="[[item.starred]]"> | 240 <template is="dom-if" if="[[item.starred]]"> |
| 241 <button is="paper-icon-button-light" id="bookmark-star" | 241 <button is="paper-icon-button-light" id="bookmark-star" |
| 242 title="$i18n{removeBookmark}" on-tap="onRemoveBookmarkTap_"> | 242 title="$i18n{removeBookmark}" on-click="onRemoveBookmarkTap_"> |
| 243 <iron-icon icon="cr:star"></iron-icon> | 243 <iron-icon icon="cr:star"></iron-icon> |
| 244 </button> | 244 </button> |
| 245 </template> | 245 </template> |
| 246 </div> | 246 </div> |
| 247 <button is="paper-icon-button-light" id="menu-button" | 247 <button is="paper-icon-button-light" id="menu-button" |
| 248 class="more-vert-button" title="$i18n{moreActionsButton}" | 248 class="more-vert-button" title="$i18n{moreActionsButton}" |
| 249 on-tap="onMenuButtonTap_"> | 249 on-click="onMenuButtonTap_"> |
| 250 <div></div> | 250 <div></div> |
| 251 <div></div> | 251 <div></div> |
| 252 <div></div> | 252 <div></div> |
| 253 </button> | 253 </button> |
| 254 </div> | 254 </div> |
| 255 <div id="time-gap-separator" hidden="[[!hasTimeGap]]"></div> | 255 <div id="time-gap-separator" hidden="[[!hasTimeGap]]"></div> |
| 256 </div> | 256 </div> |
| 257 </div> | 257 </div> |
| 258 </template> | 258 </template> |
| 259 <script src="chrome://history/history_item.js"></script> | 259 <script src="chrome://history/history_item.js"></script> |
| 260 </dom-module> | 260 </dom-module> |
| OLD | NEW |