Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(581)

Unified Diff: third_party/WebKit/Source/devtools/front_end/network/NetworkLogView.js

Issue 2460073002: [Devtools] Move canvas timeline out of experiments and remove old code (Closed)
Patch Set: changes Created 4 years, 1 month ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
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();

Powered by Google App Engine
This is Rietveld 408576698