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

Unified Diff: third_party/WebKit/Source/devtools/front_end/resources/ServiceWorkersView.js

Issue 2512873002: [DevTools] Do not use external links for resources anymore. (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
Index: third_party/WebKit/Source/devtools/front_end/resources/ServiceWorkersView.js
diff --git a/third_party/WebKit/Source/devtools/front_end/resources/ServiceWorkersView.js b/third_party/WebKit/Source/devtools/front_end/resources/ServiceWorkersView.js
index 76f2118939189cc52c22161758065d44ec466552..c7ca87715f4f6514eb034f2129f7dacf6312b15f 100644
--- a/third_party/WebKit/Source/devtools/front_end/resources/ServiceWorkersView.js
+++ b/third_party/WebKit/Source/devtools/front_end/resources/ServiceWorkersView.js
@@ -232,7 +232,7 @@ Resources.ServiceWorkersView.Section = class {
var scriptElement = this._section.appendField(Common.UIString('Source'));
scriptElement.removeChildren();
var fileName = Common.ParsedURL.extractName(active.scriptURL);
- scriptElement.appendChild(Components.Linkifier.linkifyURLAsNode(active.scriptURL, fileName));
+ scriptElement.appendChild(Components.Linkifier.linkifyURL(active.scriptURL, fileName));
scriptElement.createChild('div', 'report-field-value-subtitle').textContent =
Common.UIString('Received %s', new Date(active.scriptResponseTime * 1000).toLocaleString());

Powered by Google App Engine
This is Rietveld 408576698