| Index: third_party/WebKit/Source/devtools/front_end/profiler/CPUProfileFlameChart.js
|
| diff --git a/third_party/WebKit/Source/devtools/front_end/profiler/CPUProfileFlameChart.js b/third_party/WebKit/Source/devtools/front_end/profiler/CPUProfileFlameChart.js
|
| index 2d4cd4dfad7387f7dd77b80a544fab4388922225..5c08f2e78b8017cecd0d98c9a5cfce954ff25d41 100644
|
| --- a/third_party/WebKit/Source/devtools/front_end/profiler/CPUProfileFlameChart.js
|
| +++ b/third_party/WebKit/Source/devtools/front_end/profiler/CPUProfileFlameChart.js
|
| @@ -229,7 +229,7 @@ WebInspector.CPUFlameChartDataProvider.prototype = {
|
| var totalTime = this._millisecondsToString(timelineData.entryTotalTimes[entryIndex]);
|
| pushEntryInfoRow(WebInspector.UIString("Self time"), selfTime);
|
| pushEntryInfoRow(WebInspector.UIString("Total time"), totalTime);
|
| - var callFrame = /** @type {!ConsoleAgent.CallFrame} */ (node);
|
| + var callFrame = /** @type {!RuntimeAgent.CallFrame} */ (node);
|
| var text = (new WebInspector.Linkifier()).linkifyConsoleCallFrame(this._target, callFrame).textContent;
|
| pushEntryInfoRow(WebInspector.UIString("URL"), text);
|
| pushEntryInfoRow(WebInspector.UIString("Aggregated self time"), Number.secondsToString(node.selfTime / 1000, true));
|
|
|