| 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..c0802cd05a58f0291907b0b800ad998bc23e4cbb 100644
|
| --- a/chrome/browser/resources/md_history/history_item.js
|
| +++ b/chrome/browser/resources/md_history/history_item.js
|
| @@ -151,18 +151,6 @@ cr.define('md_history', function() {
|
| return loadTimeData.getStringF('foundSearchResults', numberOfItems,
|
| loadTimeData.getString(resultId), search);
|
| },
|
| -
|
| - /**
|
| - * Crop long item titles to reduce their effect on layout performance. See
|
| - * crbug.com/621347.
|
| - * @param {string} title
|
| - * @return {string}
|
| - */
|
| - cropItemTitle_: function(title) {
|
| - return (title.length > TITLE_MAX_LENGTH) ?
|
| - title.substr(0, TITLE_MAX_LENGTH) :
|
| - title;
|
| - }
|
| });
|
|
|
| /**
|
|
|