| Index: third_party/WebKit/Source/devtools/front_end/profiler/CPUProfileView.js
|
| diff --git a/third_party/WebKit/Source/devtools/front_end/profiler/CPUProfileView.js b/third_party/WebKit/Source/devtools/front_end/profiler/CPUProfileView.js
|
| index 4fd2517be0905fb301d319ad099009580cdbbb85..8f42a3be2237c3e773331712168019f706684332 100644
|
| --- a/third_party/WebKit/Source/devtools/front_end/profiler/CPUProfileView.js
|
| +++ b/third_party/WebKit/Source/devtools/front_end/profiler/CPUProfileView.js
|
| @@ -349,8 +349,7 @@ WebInspector.CPUProfileView.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");
|
| }
|
| }
|
|
|
| @@ -478,9 +477,8 @@ WebInspector.CPUFlameChartDataProvider.prototype = {
|
| var totalTime = millisecondsToString(timelineData.entryTotalTimes[entryIndex]);
|
| pushEntryInfoRow(WebInspector.UIString("Self time"), selfTime);
|
| pushEntryInfoRow(WebInspector.UIString("Total time"), totalTime);
|
| - var callFrame = /** @type {!RuntimeAgent.CallFrame} */ (node);
|
| var linkifier = new WebInspector.Linkifier();
|
| - var text = linkifier.linkifyConsoleCallFrame(this._target, callFrame).textContent;
|
| + var text = linkifier.linkifyConsoleCallFrameForTimeline(this._target, node).textContent;
|
| linkifier.dispose();
|
| pushEntryInfoRow(WebInspector.UIString("URL"), text);
|
| pushEntryInfoRow(WebInspector.UIString("Aggregated self time"), Number.secondsToString(node.selfTime / 1000, true));
|
|
|