Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(373)

Side by Side Diff: chrome/browser/resources/md_history/history_item.html

Issue 2738063008: WebUI: Polymer config tweaks for better performance. (Closed)
Patch Set: Rebase + comment. Created 3 years, 9 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
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 213 matching lines...) Expand 10 before | Expand all | Expand 10 after
224 <div id="title-and-domain"> 224 <div id="title-and-domain">
225 <a href="[[item.url]]" id="title" class="website-title" 225 <a href="[[item.url]]" id="title" class="website-title"
226 title="[[item.title]]" on-click="onLinkClick_" 226 title="[[item.title]]" on-click="onLinkClick_"
227 on-contextmenu="onLinkRightClick_"> 227 on-contextmenu="onLinkRightClick_">
228 <history-searched-label title="[[item.title]]" 228 <history-searched-label title="[[item.title]]"
229 search-term="[[searchTerm]]"></history-searched-label> 229 search-term="[[searchTerm]]"></history-searched-label>
230 </a> 230 </a>
231 <span id="domain">[[item.domain]]</span> 231 <span id="domain">[[item.domain]]</span>
232 </div> 232 </div>
233 <div id="star-container"> 233 <div id="star-container">
234 <template is="dom-if" if="[[item.starred]]"> 234 <template is="dom-if" if="[[item.starred]]" notify-dom-change>
235 <button is="paper-icon-button-light" id="bookmark-star" 235 <button is="paper-icon-button-light" id="bookmark-star"
236 title="$i18n{removeBookmark}" on-click="onRemoveBookmarkTap_"> 236 title="$i18n{removeBookmark}" on-click="onRemoveBookmarkTap_">
237 <iron-icon icon="cr:star"></iron-icon> 237 <iron-icon icon="cr:star"></iron-icon>
238 </button> 238 </button>
239 </template> 239 </template>
240 </div> 240 </div>
241 <button is="paper-icon-button-light" id="menu-button" 241 <button is="paper-icon-button-light" id="menu-button"
242 class="more-vert-button" title="$i18n{moreActionsButton}" 242 class="more-vert-button" title="$i18n{moreActionsButton}"
243 on-click="onMenuButtonTap_"> 243 on-click="onMenuButtonTap_">
244 <div></div> 244 <div></div>
245 <div></div> 245 <div></div>
246 <div></div> 246 <div></div>
247 </button> 247 </button>
248 </div> 248 </div>
249 <div id="time-gap-separator" hidden="[[!hasTimeGap]]"></div> 249 <div id="time-gap-separator" hidden="[[!hasTimeGap]]"></div>
250 </div> 250 </div>
251 </template> 251 </template>
252 <script src="chrome://history/history_item.js"></script> 252 <script src="chrome://history/history_item.js"></script>
253 </dom-module> 253 </dom-module>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698