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

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

Issue 2998043002: Remove RelatedHistogramSet. (Closed)
Patch Set: Created 3 years, 4 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 | « tracing/tracing/value/histogram_set.py ('k') | tracing/tracing/value/histogram_set_test.html » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: tracing/tracing/value/histogram_set_hierarchy.html
diff --git a/tracing/tracing/value/histogram_set_hierarchy.html b/tracing/tracing/value/histogram_set_hierarchy.html
index a3beb2d8c643659307e78141799eca1fb491f5c2..da23ef4f8708a2f38f15a13f852546ea34416ea0 100644
--- a/tracing/tracing/value/histogram_set_hierarchy.html
+++ b/tracing/tracing/value/histogram_set_hierarchy.html
@@ -162,7 +162,7 @@ tr.exportTo('tr.v', function() {
const mergedFrom = existing.diagnostics.get(
tr.v.d.RESERVED_NAMES.MERGED_FROM);
if (mergedFrom !== undefined) {
- for (const origHist of mergedFrom) {
+ for (const [unusedName, origHist] of mergedFrom) {
unmergeableHistograms.addHistogram(origHist);
}
}
@@ -258,7 +258,7 @@ tr.exportTo('tr.v', function() {
const mergedFrom = testHist.diagnostics.get(
tr.v.d.RESERVED_NAMES.MERGED_FROM);
if (mergedFrom !== undefined) {
- for (const origHist of mergedFrom) {
+ for (const [unusedName, origHist] of mergedFrom) {
if (histograms.lookupHistogram(origHist.guid) !== undefined) {
found = true;
break;
« no previous file with comments | « tracing/tracing/value/histogram_set.py ('k') | tracing/tracing/value/histogram_set_test.html » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698