| Index: chrome/browser/resources/md_history/history_toolbar.js
|
| diff --git a/chrome/browser/resources/md_history/history_toolbar.js b/chrome/browser/resources/md_history/history_toolbar.js
|
| index 9562c754ffc3a5706497e956fb8a73d3a0020839..fd6f035afc69c4fd7a5d8db2ac40dd04773de270 100644
|
| --- a/chrome/browser/resources/md_history/history_toolbar.js
|
| +++ b/chrome/browser/resources/md_history/history_toolbar.js
|
| @@ -34,6 +34,12 @@ Polymer({
|
| value: false
|
| },
|
|
|
| + hasDrawer: {
|
| + type: Boolean,
|
| + observer: 'hasDrawerChanged_',
|
| + reflectToAttribute: true,
|
| + },
|
| +
|
| // Whether domain-grouped history is enabled.
|
| isGroupedMode: {
|
| type: Boolean,
|
| @@ -122,5 +128,10 @@ Polymer({
|
| // TODO(calamity): Fix the format of these dates.
|
| return loadTimeData.getStringF(
|
| 'historyInterval', queryStartTime, queryEndTime);
|
| - }
|
| + },
|
| +
|
| + /** @private */
|
| + hasDrawerChanged_: function() {
|
| + this.updateStyles();
|
| + },
|
| });
|
|
|