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

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

Issue 2515543002: [DevTools] Remove Components.linkifyRequestAsNode. (Closed)
Patch Set: 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
« no previous file with comments | « third_party/WebKit/Source/devtools/front_end/components/Linkifier.js ('k') | no next file » | 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/NetworkDataGridNode.js
diff --git a/third_party/WebKit/Source/devtools/front_end/network/NetworkDataGridNode.js b/third_party/WebKit/Source/devtools/front_end/network/NetworkDataGridNode.js
index fd22d430a06a2b6d040fbd93dab0bc39aacf2e05..e3feaaa90f3a6282d571a9c8eaeec54ab3513f03 100644
--- a/third_party/WebKit/Source/devtools/front_end/network/NetworkDataGridNode.js
+++ b/third_party/WebKit/Source/devtools/front_end/network/NetworkDataGridNode.js
@@ -533,7 +533,7 @@ Network.NetworkDataGridNode = class extends UI.SortableDataGridNode {
cell.title = initiator.url;
console.assert(request.redirectSource);
var redirectSource = /** @type {!SDK.NetworkRequest} */ (request.redirectSource);
- cell.appendChild(Components.linkifyRequestAsNode(redirectSource));
+ cell.appendChild(Components.linkifyResourceAsNode(redirectSource.url));
this._appendSubtitle(cell, Common.UIString('Redirect'));
break;
« no previous file with comments | « third_party/WebKit/Source/devtools/front_end/components/Linkifier.js ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698