| Index: Source/devtools/front_end/TimelinePanel.js
|
| diff --git a/Source/devtools/front_end/TimelinePanel.js b/Source/devtools/front_end/TimelinePanel.js
|
| index 6e8c9abe72efefaffd7a194a9589fcd8366f023f..c16557d24198855a20a9cd410c45452f36516cb8 100644
|
| --- a/Source/devtools/front_end/TimelinePanel.js
|
| +++ b/Source/devtools/front_end/TimelinePanel.js
|
| @@ -908,11 +908,11 @@ WebInspector.TimelinePanel.prototype = {
|
|
|
| /**
|
| * @param {string} title
|
| - * @param {!Object} aggregatedStats
|
| + * @param {!Node} node
|
| */
|
| - showAggregatedStatsInDetails: function(title, aggregatedStats)
|
| + showInDetails: function(title, node)
|
| {
|
| - this._detailsView.setContent(title, WebInspector.TimelineUIUtils.generatePieChart(aggregatedStats));
|
| + this._detailsView.setContent(title, node);
|
| },
|
|
|
| __proto__: WebInspector.Panel.prototype
|
| @@ -1026,9 +1026,9 @@ WebInspector.TimelineModeViewDelegate.prototype = {
|
|
|
| /**
|
| * @param {string} title
|
| - * @param {!Object} aggregatedStats
|
| + * @param {!Node} node
|
| */
|
| - showAggregatedStatsInDetails: function(title, aggregatedStats) {},
|
| + showInDetails: function(title, node) {},
|
| }
|
|
|
| /**
|
|
|