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

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

Issue 1232733002: DevTools: [network] Show request Start time in timing table (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: post-fork. queuing is inside of total. queued time, too Created 5 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
« no previous file with comments | « no previous file | third_party/WebKit/Source/devtools/front_end/network/RequestTimingView.js » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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 6bead516ea7d2f85d65f4eac0089a1ed47692e17..d29ce77adbd2292a08c928b1fe42c641fb4dcf1f 100644
--- a/third_party/WebKit/Source/devtools/front_end/network/NetworkLogView.js
+++ b/third_party/WebKit/Source/devtools/front_end/network/NetworkLogView.js
@@ -1250,7 +1250,7 @@ WebInspector.NetworkLogView.prototype = {
content = WebInspector.DOMPresentationUtils.buildStackTracePreviewContents(request.target(), this._popupLinkifier, initiator.stackTrace, initiator.asyncStackTrace);
popover.setCanShrink(true);
} else {
- content = WebInspector.RequestTimingView.createTimingTable(anchor.parentElement.request, this._timeCalculator.minimumBoundary());
+ content = WebInspector.RequestTimingView.createTimingTable(anchor.parentElement.request, this._timeCalculator);
popover.setCanShrink(false);
}
popover.showForAnchor(content, anchor);
« no previous file with comments | « no previous file | third_party/WebKit/Source/devtools/front_end/network/RequestTimingView.js » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698