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

Unified Diff: third_party/WebKit/Source/devtools/front_end/components/Linkifier.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 | « no previous file | third_party/WebKit/Source/devtools/front_end/network/NetworkDataGridNode.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/components/Linkifier.js
diff --git a/third_party/WebKit/Source/devtools/front_end/components/Linkifier.js b/third_party/WebKit/Source/devtools/front_end/components/Linkifier.js
index 5e18bbdb21c7ab9f885d6f8de80166b2a25ad8ae..aa073707a1b6f4e55e33ac4e918c13c26d2c8e37 100644
--- a/third_party/WebKit/Source/devtools/front_end/components/Linkifier.js
+++ b/third_party/WebKit/Source/devtools/front_end/components/Linkifier.js
@@ -606,13 +606,3 @@ Components.linkifyResourceAsNode = function(url, lineNumber, columnNumber, class
anchor.columnNumber = columnNumber;
return anchor;
};
-
-/**
- * @param {!SDK.NetworkRequest} request
- * @return {!Element}
- */
-Components.linkifyRequestAsNode = function(request) {
- var anchor = UI.createExternalLink(request.url);
- anchor.requestId = request.requestId;
- return anchor;
-};
« no previous file with comments | « no previous file | third_party/WebKit/Source/devtools/front_end/network/NetworkDataGridNode.js » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698