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

Unified Diff: tracing/tracing/value/diagnostics/add_related_names.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/trace_viewer.gypi ('k') | tracing/tracing/value/diagnostics/all_diagnostics.html » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: tracing/tracing/value/diagnostics/add_related_names.html
diff --git a/tracing/tracing/value/diagnostics/add_related_names.html b/tracing/tracing/value/diagnostics/add_related_names.html
index b276912bbb27f558802e228f1d2ad584c0a91552..a8151222466af3d9c73107fdb1814e018a4b77ca 100644
--- a/tracing/tracing/value/diagnostics/add_related_names.html
+++ b/tracing/tracing/value/diagnostics/add_related_names.html
@@ -20,11 +20,6 @@ tr.exportTo('tr.v.d', function() {
for (const hist of histograms) {
const relatedNames = new Set();
for (const [name, diagnostic] of hist.diagnostics) {
- if (diagnostic instanceof tr.v.d.RelatedHistogramSet) {
- for (const relatedHist of diagnostic) {
- relatedNames.add(relatedHist.name);
- }
- }
if (diagnostic instanceof tr.v.d.RelatedHistogramMap) {
for (const [relationshipName, relatedHist] of diagnostic) {
relatedNames.add(relatedHist.name);
« no previous file with comments | « tracing/trace_viewer.gypi ('k') | tracing/tracing/value/diagnostics/all_diagnostics.html » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698