| Index: Source/devtools/front_end/profiler/HeapSnapshotGridNodes.js
|
| diff --git a/Source/devtools/front_end/profiler/HeapSnapshotGridNodes.js b/Source/devtools/front_end/profiler/HeapSnapshotGridNodes.js
|
| index 2c000a84db533c6c01abf520fcde0588d438e3e9..d69d943941d136318fa88f4fc46b4e55d049cdf8 100644
|
| --- a/Source/devtools/front_end/profiler/HeapSnapshotGridNodes.js
|
| +++ b/Source/devtools/front_end/profiler/HeapSnapshotGridNodes.js
|
| @@ -1490,7 +1490,7 @@ WebInspector.AllocationGridNode.prototype = {
|
| var target = this._dataGrid.target();
|
| if (allocationNode.scriptId) {
|
| var linkifier = this._dataGrid._linkifier;
|
| - var urlElement = linkifier.linkifyLocationByScriptId(target, String(allocationNode.scriptId), allocationNode.scriptName, allocationNode.line - 1, allocationNode.column - 1, "profile-node-file");
|
| + var urlElement = linkifier.linkifyScriptLocation(target, String(allocationNode.scriptId), allocationNode.scriptName, allocationNode.line - 1, allocationNode.column - 1, "profile-node-file");
|
| urlElement.style.maxWidth = "75%";
|
| cell.insertBefore(urlElement, cell.firstChild);
|
| }
|
|
|