| Index: third_party/WebKit/Source/devtools/front_end/network/NetworkLogView.js
|
| diff --git a/third_party/WebKit/Source/devtools/front_end/network/NetworkLogView.js b/third_party/WebKit/Source/devtools/front_end/network/NetworkLogView.js
|
| index 231984e5b91451326b5f5b9eca708d5468b8e715..bbb887c55fc8413ab16d2b2dfedb9373af5439b7 100644
|
| --- a/third_party/WebKit/Source/devtools/front_end/network/NetworkLogView.js
|
| +++ b/third_party/WebKit/Source/devtools/front_end/network/NetworkLogView.js
|
| @@ -396,7 +396,6 @@ WebInspector.NetworkLogView = class extends WebInspector.VBox {
|
| this._timeFilter = WebInspector.NetworkLogView._requestTimeFilter.bind(null, start, end);
|
| this._timeCalculator.setWindow(new WebInspector.NetworkTimeBoundary(start, end));
|
| }
|
| - this._columns.updateDividersIfNeeded();
|
| this._filterRequests();
|
| }
|
|
|
| @@ -766,13 +765,6 @@ WebInspector.NetworkLogView = class extends WebInspector.VBox {
|
| this._columns.wasShown();
|
| }
|
|
|
| - /**
|
| - * @override
|
| - */
|
| - willHide() {
|
| - this._columns.willHide();
|
| - }
|
| -
|
| _refresh() {
|
| this._needsRefresh = false;
|
|
|
| @@ -831,14 +823,6 @@ WebInspector.NetworkLogView = class extends WebInspector.VBox {
|
| this._highlightNthMatchedRequestForSearch(
|
| this._updateMatchCountAndFindMatchIndex(this._currentMatchedRequestNode), false);
|
|
|
| - if (!this.calculator().boundary().equals(oldBoundary)) {
|
| - // The boundaries changed, so all item graphs are stale.
|
| - this._columns.updateDividersIfNeeded();
|
| - var nodes = this._nodesByRequestId.valuesArray();
|
| - for (var i = 0; i < nodes.length; ++i)
|
| - nodes[i].refreshGraph();
|
| - }
|
| -
|
| this._staleRequestIds = {};
|
| this._updateSummaryBar();
|
|
|
|
|