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

Unified Diff: tracing/tracing/value/histogram_set.html

Issue 2424933003: Rename ValueSet* to HistogramSet*. (Closed)
Patch Set: fix Created 4 years, 2 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
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>
« no previous file with comments | « tracing/tracing/value/diagnostics/related_value_set.html ('k') | tracing/tracing/value/histogram_set_test.html » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698