| Index: third_party/WebKit/Source/devtools/front_end/perf_ui/FlameChart.js
|
| diff --git a/third_party/WebKit/Source/devtools/front_end/perf_ui/FlameChart.js b/third_party/WebKit/Source/devtools/front_end/perf_ui/FlameChart.js
|
| index 26365877dc6bd41cdc0d87170fe5f7895629f5b0..2d334da82dd3f9289c5ed8ec86c39f998c6a3c31 100644
|
| --- a/third_party/WebKit/Source/devtools/front_end/perf_ui/FlameChart.js
|
| +++ b/third_party/WebKit/Source/devtools/front_end/perf_ui/FlameChart.js
|
| @@ -1201,12 +1201,14 @@ PerfUI.FlameChart = class extends PerfUI.ChartViewport {
|
| */
|
| reset() {
|
| super.reset();
|
| + this._rawTimelineData = null;
|
| + this._rawTimelineDataLength = 0;
|
| this._highlightedMarkerIndex = -1;
|
| this._highlightedEntryIndex = -1;
|
| this._selectedEntryIndex = -1;
|
| /** @type {!Map<string,!Map<string,number>>} */
|
| this._textWidth = new Map();
|
| - this.update();
|
| + this.scheduleUpdate();
|
| }
|
|
|
| _enabled() {
|
|
|