| Index: chrome/browser/resources/md_history/grouped_list.js
|
| diff --git a/chrome/browser/resources/md_history/grouped_list.js b/chrome/browser/resources/md_history/grouped_list.js
|
| index 062d6865bfc8a69ccebc73e096d5f67f360dc73d..f772e5270dd88d27a00339e6c520183dfce99770 100644
|
| --- a/chrome/browser/resources/md_history/grouped_list.js
|
| +++ b/chrome/browser/resources/md_history/grouped_list.js
|
| @@ -22,34 +22,27 @@ Polymer({
|
| behaviors: [HistoryListBehavior],
|
|
|
| properties: {
|
| - // An array of history entries in reverse chronological order.
|
| - historyData: {
|
| - type: Array,
|
| + searchedTerm: {
|
| + type: String,
|
| + value: '',
|
| },
|
|
|
| /**
|
| * @type {Array<HistoryGroup>}
|
| */
|
| - groupedHistoryData_: {
|
| - type: Array,
|
| - },
|
| -
|
| - searchedTerm: {
|
| - type: String,
|
| - value: ''
|
| - },
|
| + groupedHistoryData_: Array,
|
|
|
| - range: {
|
| - type: Number,
|
| - },
|
| + // An array of history entries in reverse chronological order.
|
| + historyData: Array,
|
|
|
| queryStartTime: String,
|
| +
|
| queryEndTime: String,
|
| +
|
| + range: Number,
|
| },
|
|
|
| - observers: [
|
| - 'updateGroupedHistoryData_(range, historyData)'
|
| - ],
|
| + observers: ['updateGroupedHistoryData_(range, historyData)'],
|
|
|
| /**
|
| * @param {!Array<!HistoryEntry>} results
|
| @@ -106,7 +99,7 @@ Polymer({
|
| var pushCurrentDay = function() {
|
| days.push({
|
| title: this.searchedTerm ? currentDayVisits[0].dateShort :
|
| - currentDayVisits[0].dateRelativeDay,
|
| + currentDayVisits[0].dateRelativeDay,
|
| domains: this.createHistoryDomains_(currentDayVisits),
|
| });
|
| }.bind(this);
|
|
|