| Index: tracing/tracing/value/ui/histogram_set_table_row.html
|
| diff --git a/tracing/tracing/value/ui/histogram_set_table_row.html b/tracing/tracing/value/ui/histogram_set_table_row.html
|
| index ac64ed0411d22b78e32b9a1e6b87d835d702f565..ce82c8d152a9dfa82b780e71802eef2f31bfc89f 100644
|
| --- a/tracing/tracing/value/ui/histogram_set_table_row.html
|
| +++ b/tracing/tracing/value/ui/histogram_set_table_row.html
|
| @@ -141,6 +141,18 @@ tr.exportTo('tr.v.ui', function() {
|
| return this.overviewDataRange_;
|
| }
|
|
|
| + getLeafHistograms(histograms) {
|
| + if (this.subRows.length === 0) {
|
| + for (var [displayLabel, hist] of this.columns) {
|
| + histograms.addHistogram(hist);
|
| + }
|
| + return;
|
| + }
|
| + for (var subRow of this.subRows) {
|
| + subRow.getLeafHistograms(histograms);
|
| + }
|
| + }
|
| +
|
| compareNames(other) {
|
| return this.name.localeCompare(other.name);
|
| }
|
|
|