Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(1507)

Unified Diff: Source/devtools/front_end/TimelinePanel.js

Issue 219363002: Timeline: replace showAggregatedStatsInDetails with a more generic showInDetails (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Created 6 years, 9 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « no previous file | Source/devtools/front_end/TimelineView.js » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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) {},
}
/**
« no previous file with comments | « no previous file | Source/devtools/front_end/TimelineView.js » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698