| Index: Source/devtools/front_end/timeline/TimelineFlameChart.js
|
| diff --git a/Source/devtools/front_end/timeline/TimelineFlameChart.js b/Source/devtools/front_end/timeline/TimelineFlameChart.js
|
| index f83ffbf927e1d95646e43167fbf5ee69c2f1ad4b..a51c55e4b1d8c698d4b2a64ece4b1c89e7359862 100644
|
| --- a/Source/devtools/front_end/timeline/TimelineFlameChart.js
|
| +++ b/Source/devtools/front_end/timeline/TimelineFlameChart.js
|
| @@ -845,12 +845,12 @@ WebInspector.TimelineFlameChart.prototype = {
|
| refreshRecords: function(textFilter)
|
| {
|
| this._dataProvider.reset();
|
| - this._mainView._scheduleUpdate();
|
| + this._mainView.scheduleUpdate();
|
| },
|
|
|
| wasShown: function()
|
| {
|
| - this._mainView._scheduleUpdate();
|
| + this._mainView.scheduleUpdate();
|
| },
|
|
|
|
|
| @@ -888,7 +888,7 @@ WebInspector.TimelineFlameChart.prototype = {
|
| this._automaticallySizeWindow = false;
|
| this._delegate.requestWindowTimes(minimumRecordTime, minimumRecordTime + 1000);
|
| }
|
| - this._mainView._scheduleUpdate();
|
| + this._mainView.scheduleUpdate();
|
| } else {
|
| if (!this._pendingUpdateTimer)
|
| this._pendingUpdateTimer = window.setTimeout(this._updateOnAddRecord.bind(this), 300);
|
| @@ -898,7 +898,7 @@ WebInspector.TimelineFlameChart.prototype = {
|
| _updateOnAddRecord: function()
|
| {
|
| delete this._pendingUpdateTimer;
|
| - this._mainView._scheduleUpdate();
|
| + this._mainView.scheduleUpdate();
|
| },
|
|
|
| /**
|
|
|