| Index: tracing/tracing/value/histogram_set.html
|
| diff --git a/tracing/tracing/value/value_set.html b/tracing/tracing/value/histogram_set.html
|
| similarity index 97%
|
| rename from tracing/tracing/value/value_set.html
|
| rename to tracing/tracing/value/histogram_set.html
|
| index 309311fcd1263496a8ef6bb7a7e0364b5c28ae20..2d880be0ef5607cbfc07979e48f1e02fd169c6b8 100644
|
| --- a/tracing/tracing/value/value_set.html
|
| +++ b/tracing/tracing/value/histogram_set.html
|
| @@ -13,7 +13,7 @@ found in the LICENSE file.
|
|
|
| tr.exportTo('tr.v', function() {
|
| /*
|
| - * See ValueSet.groupHistogramsRecursively() and
|
| + * See HistogramSet.groupHistogramsRecursively() and
|
| * tr-ui-b-grouping-table-groupby-picker.
|
| */
|
| class HistogramGrouping {
|
| @@ -29,7 +29,7 @@ tr.exportTo('tr.v', function() {
|
| }
|
| }
|
|
|
| - class ValueSet {
|
| + class HistogramSet {
|
| constructor(opt_values) {
|
| this.values_ = new Map();
|
|
|
| @@ -168,7 +168,7 @@ tr.exportTo('tr.v', function() {
|
| }
|
| }
|
| }
|
| - return new ValueSet([...sourceValues.values()]);
|
| + return new HistogramSet([...sourceValues.values()]);
|
| }
|
|
|
| /**
|
| @@ -216,7 +216,7 @@ tr.exportTo('tr.v', function() {
|
| }
|
|
|
| // This does not contain storyGroupingKeys!
|
| - ValueSet.GROUPINGS = {
|
| + HistogramSet.GROUPINGS = {
|
| HISTOGRAM_NAME: new HistogramGrouping('name', h => h.name),
|
|
|
| BENCHMARK_NAME: new HistogramGrouping('benchmark',
|
| @@ -242,7 +242,7 @@ tr.exportTo('tr.v', function() {
|
|
|
| return {
|
| HistogramGrouping: HistogramGrouping,
|
| - ValueSet: ValueSet
|
| + HistogramSet: HistogramSet
|
| };
|
| });
|
| </script>
|
|
|