Index: chrome/browser/resources/md_history/app.crisper.js |
diff --git a/chrome/browser/resources/md_history/app.crisper.js b/chrome/browser/resources/md_history/app.crisper.js |
index f6215c824358efa55af672404a9d244faa018c30..91fc353a883ddcf1fbfa32dd667add7cebf88cc9 100644 |
--- a/chrome/browser/resources/md_history/app.crisper.js |
+++ b/chrome/browser/resources/md_history/app.crisper.js |
@@ -6809,6 +6809,10 @@ cr.define('md_history', function() { |
onCheckboxMousedown_: function(e) { |
if (e.shiftKey) e.preventDefault(); |
}, |
+ getEntrySummary_: function() { |
+ var item = this.item; |
+ return loadTimeData.getStringF('entrySummary', item.dateTimeOfDay, item.starred ? loadTimeData.getString('bookmarked') : '', item.title, item.domain); |
+ }, |
onRemoveBookmarkTap_: function() { |
if (!this.item.starred) return; |
if (this.$$('#bookmark-star') == this.root.activeElement) this.$['menu-button'].focus(); |