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

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

Issue 2057243003: DevTools: [network] Show request start time in timing table (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Common.UIString Created 3 years, 10 months 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/NetworkWaterfallColumn.js
diff --git a/third_party/WebKit/Source/devtools/front_end/network/NetworkWaterfallColumn.js b/third_party/WebKit/Source/devtools/front_end/network/NetworkWaterfallColumn.js
index 43acae97c124d72c15837da624f74a676a509055..212d7104e3878c2f0f4447e45e334c5da6fa2a6b 100644
--- a/third_party/WebKit/Source/devtools/front_end/network/NetworkWaterfallColumn.js
+++ b/third_party/WebKit/Source/devtools/front_end/network/NetworkWaterfallColumn.js
@@ -143,7 +143,7 @@ Network.NetworkWaterfallColumn = class extends UI.VBox {
var request = this._hoveredNode.request();
if (!request)
return;
- var content = Network.RequestTimingView.createTimingTable(request, this._calculator.minimumBoundary());
+ var content = Network.RequestTimingView.createTimingTable(request, this._calculator);
popover.showForAnchor(content, anchor);
}

Powered by Google App Engine
This is Rietveld 408576698