| Index: Source/devtools/front_end/profiler/HeapSnapshotView.js
|
| diff --git a/Source/devtools/front_end/profiler/HeapSnapshotView.js b/Source/devtools/front_end/profiler/HeapSnapshotView.js
|
| index 32c32f7a7545e3f7f25511621ee00a69cb342b65..22d4944b7d98debd9a565016a9cb1c2664eaffe8 100644
|
| --- a/Source/devtools/front_end/profiler/HeapSnapshotView.js
|
| +++ b/Source/devtools/front_end/profiler/HeapSnapshotView.js
|
| @@ -2169,7 +2169,7 @@ WebInspector.HeapAllocationStackView.prototype = {
|
| var name = frameDiv.createChild("div");
|
| name.textContent = frame.functionName;
|
| if (frame.scriptId) {
|
| - var urlElement = this._linkifier.linkifyLocationByScriptId(this._weakTarget.get(), String(frame.scriptId), frame.scriptName, frame.line - 1, frame.column - 1);
|
| + var urlElement = this._linkifier.linkifyScriptLocation(this._weakTarget.get(), String(frame.scriptId), frame.scriptName, frame.line - 1, frame.column - 1);
|
| frameDiv.appendChild(urlElement);
|
| }
|
| }
|
|
|