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

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

Issue 2962133002: MD History: Update timestamp hover text when item changes (Closed)
Patch Set: Be lazy again Created 3 years, 5 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
« no previous file with comments | « no previous file | chrome/browser/resources/md_history/history_item.js » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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 199 matching lines...) Expand 10 before | Expand all | Expand 10 after
210 <div id="item-container" 210 <div id="item-container"
211 on-mousedown="onItemMousedown_" 211 on-mousedown="onItemMousedown_"
212 on-click="onItemClick_"> 212 on-click="onItemClick_">
213 <button is="paper-icon-button-light" id="checkbox" 213 <button is="paper-icon-button-light" id="checkbox"
214 hidden="[[selectionNotAllowed_]]" 214 hidden="[[selectionNotAllowed_]]"
215 role="checkbox" 215 role="checkbox"
216 aria-checked$="[[getAriaChecked_(selected)]]" 216 aria-checked$="[[getAriaChecked_(selected)]]"
217 aria-label$="[[getEntrySummary_(item)]]"> 217 aria-label$="[[getEntrySummary_(item)]]">
218 <div id="checkmark"></div> 218 <div id="checkmark"></div>
219 </button> 219 </button>
220 <span id="time-accessed" on-mouseover="addTimeTitle_"> 220 <span id="time-accessed">
221 [[item.readableTimestamp]] 221 [[item.readableTimestamp]]
222 </span> 222 </span>
223 <div class="website-icon" id="icon"></div> 223 <div class="website-icon" id="icon"></div>
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>
(...skipping 13 matching lines...) Expand all
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
« no previous file with comments | « no previous file | chrome/browser/resources/md_history/history_item.js » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698