| Index: chrome/browser/resources/md_history/history_item.js
|
| diff --git a/chrome/browser/resources/md_history/history_item.js b/chrome/browser/resources/md_history/history_item.js
|
| index 211842c2f3632d1592559fe9a710ad1a7c912c9b..38d398755a991d595b37f8266e58b9ea13d535c5 100644
|
| --- a/chrome/browser/resources/md_history/history_item.js
|
| +++ b/chrome/browser/resources/md_history/history_item.js
|
| @@ -62,6 +62,18 @@ cr.define('md_history', function() {
|
| },
|
|
|
| /**
|
| + * @private
|
| + * @return {string}
|
| + */
|
| + getEntrySummary_: function() {
|
| + var item = this.item;
|
| + return loadTimeData.getStringF(
|
| + 'entrySummary', item.dateTimeOfDay,
|
| + item.starred ? loadTimeData.getString('bookmarked') : '', item.title,
|
| + item.domain);
|
| + },
|
| +
|
| + /**
|
| * Remove bookmark of current item when bookmark-star is clicked.
|
| * @private
|
| */
|
|
|