Index: Source/devtools/front_end/timeline/TimelineUIUtils.js |
diff --git a/Source/devtools/front_end/timeline/TimelineUIUtils.js b/Source/devtools/front_end/timeline/TimelineUIUtils.js |
index f9de289821abb7b3e5ed5164571d7be2a194bc0a..b37a02579ab9c0782f5cf62045202f06cc52aff0 100644 |
--- a/Source/devtools/front_end/timeline/TimelineUIUtils.js |
+++ b/Source/devtools/front_end/timeline/TimelineUIUtils.js |
@@ -548,7 +548,7 @@ WebInspector.TimelineDetailsContentHelper.prototype = { |
{ |
if (!this._linkifier || !this._target) |
return; |
- this.appendElementRow(title, this._linkifier.linkifyLocation(this._target, url, line - 1) || ""); |
+ this.appendElementRow(title, this._linkifier.linkifyScriptLocation(this._target, null, url, line - 1) || ""); |
}, |
/** |
@@ -569,7 +569,7 @@ WebInspector.TimelineDetailsContentHelper.prototype = { |
var row = stackTraceElement.createChild("div"); |
row.createTextChild(stackFrame.functionName || WebInspector.UIString("(anonymous function)")); |
row.createTextChild(" @ "); |
- var urlElement = this._linkifier.linkifyLocationByScriptId(this._target, stackFrame.scriptId, stackFrame.url, stackFrame.lineNumber - 1, stackFrame.columnNumber - 1); |
+ var urlElement = this._linkifier.linkifyScriptLocation(this._target, stackFrame.scriptId, stackFrame.url, stackFrame.lineNumber - 1, stackFrame.columnNumber - 1); |
row.appendChild(urlElement); |
} |
} |