| Index: chrome/browser/resources/md_history/synced_device_card.js
|
| diff --git a/chrome/browser/resources/md_history/synced_device_card.js b/chrome/browser/resources/md_history/synced_device_card.js
|
| index 89d9878dedbfdf753de9fdbe7229c7ea0eddf170..4e807781cab51ef016ee62d0b10d4a818dae5302 100644
|
| --- a/chrome/browser/resources/md_history/synced_device_card.js
|
| +++ b/chrome/browser/resources/md_history/synced_device_card.js
|
| @@ -87,5 +87,14 @@ Polymer({
|
| /** @private */
|
| isWindowSeparatorIndex_: function(index, separatorIndexes) {
|
| return this.separatorIndexes.indexOf(index) != -1;
|
| - }
|
| + },
|
| +
|
| + /**
|
| + * @param {boolean} cardOpen
|
| + * @return {string}
|
| + */
|
| + getCollapseTitle_: function(cardOpen) {
|
| + return cardOpen ? loadTimeData.getString('collapseSessionButton') :
|
| + loadTimeData.getString('expandSessionButton');
|
| + },
|
| });
|
|
|