| Index: third_party/WebKit/Source/devtools/front_end/profiler/HeapProfileView.js
|
| diff --git a/third_party/WebKit/Source/devtools/front_end/profiler/HeapProfileView.js b/third_party/WebKit/Source/devtools/front_end/profiler/HeapProfileView.js
|
| index ef44c988af3c569fa10fe7c72223f3f0b624b951..24404a69af4658c21ddcf269d3be7de690311cc2 100644
|
| --- a/third_party/WebKit/Source/devtools/front_end/profiler/HeapProfileView.js
|
| +++ b/third_party/WebKit/Source/devtools/front_end/profiler/HeapProfileView.js
|
| @@ -302,8 +302,7 @@ WebInspector.HeapProfileView.NodeFormatter.prototype = {
|
| */
|
| linkifyNode: function(node)
|
| {
|
| - var callFrame = node.profileNode.frame;
|
| - return this._profileView.linkifier().linkifyConsoleCallFrame(this._profileView.target(), callFrame, "profile-node-file");
|
| + return this._profileView.linkifier().linkifyConsoleCallFrameForTimeline(this._profileView.target(), node.profileNode.frame, "profile-node-file");
|
| }
|
| }
|
|
|
| @@ -423,7 +422,7 @@ WebInspector.HeapFlameChartDataProvider.prototype = {
|
| pushEntryInfoRow(WebInspector.UIString("Self size"), Number.bytesToString(node.self));
|
| pushEntryInfoRow(WebInspector.UIString("Total size"), Number.bytesToString(node.total));
|
| var linkifier = new WebInspector.Linkifier();
|
| - var text = (new WebInspector.Linkifier()).linkifyConsoleCallFrame(this._target, node.frame).textContent;
|
| + var text = (new WebInspector.Linkifier()).linkifyConsoleCallFrameForTimeline(this._target, node.frame).textContent;
|
| linkifier.dispose();
|
| pushEntryInfoRow(WebInspector.UIString("URL"), text);
|
| return entryInfo;
|
|
|