| Index: Source/devtools/front_end/timeline/TimelinePresentationModel.js
|
| diff --git a/Source/devtools/front_end/timeline/TimelinePresentationModel.js b/Source/devtools/front_end/timeline/TimelinePresentationModel.js
|
| index 05b3cb3f52dd4b9645fa223719496eff1c9de1d9..d675e6334a03398e56fafad3c1887c1008bc0c13 100644
|
| --- a/Source/devtools/front_end/timeline/TimelinePresentationModel.js
|
| +++ b/Source/devtools/front_end/timeline/TimelinePresentationModel.js
|
| @@ -199,6 +199,14 @@ WebInspector.TimelinePresentationModel.prototype = {
|
| this._textFilter = textFilter;
|
| },
|
|
|
| + refreshRecords: function()
|
| + {
|
| + this.reset();
|
| + var modelRecords = this._model.records();
|
| + for (var i = 0; i < modelRecords.length; ++i)
|
| + this.addRecord(modelRecords[i]);
|
| + },
|
| +
|
| invalidateFilteredRecords: function()
|
| {
|
| delete this._filteredRecords;
|
|
|