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

Side by Side Diff: tracing/tracing/value/diagnostics/reserved_names.html

Issue 3009553002: Refactor Histogram relationship diagnostics. (Closed)
Patch Set: Created 3 years, 3 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 unified diff | Download patch
OLDNEW
1 <!DOCTYPE html> 1 <!DOCTYPE html>
2 <!-- 2 <!--
3 Copyright 2017 The Chromium Authors. All rights reserved. 3 Copyright 2017 The Chromium Authors. All rights reserved.
4 Use of this source code is governed by a BSD-style license that can be 4 Use of this source code is governed by a BSD-style license that can be
5 found in the LICENSE file. 5 found in the LICENSE file.
6 --> 6 -->
7 7
8 <!-- 8 <!--
9 Include all Diagnostic subclasses here so that RESERVED_INFOS always has 9 Include all Diagnostic subclasses here so that RESERVED_INFOS always has
10 access to all subclasses. 10 access to all subclasses.
(...skipping 16 matching lines...) Expand all
27 CATAPULT_REVISIONS: {name: 'catapultRevisions', type: tr.v.d.GenericSet}, 27 CATAPULT_REVISIONS: {name: 'catapultRevisions', type: tr.v.d.GenericSet},
28 CHROMIUM_COMMIT_POSITIONS: { 28 CHROMIUM_COMMIT_POSITIONS: {
29 name: 'chromiumCommitPositions', type: tr.v.d.GenericSet}, 29 name: 'chromiumCommitPositions', type: tr.v.d.GenericSet},
30 CHROMIUM_REVISIONS: {name: 'chromiumRevisions', type: tr.v.d.GenericSet}, 30 CHROMIUM_REVISIONS: {name: 'chromiumRevisions', type: tr.v.d.GenericSet},
31 GPUS: {name: 'gpus', type: tr.v.d.GenericSet}, 31 GPUS: {name: 'gpus', type: tr.v.d.GenericSet},
32 GROUPING_PATH: {name: 'groupingPath', type: tr.v.d.GroupingPath}, 32 GROUPING_PATH: {name: 'groupingPath', type: tr.v.d.GroupingPath},
33 LABELS: {name: 'labels', type: tr.v.d.GenericSet}, 33 LABELS: {name: 'labels', type: tr.v.d.GenericSet},
34 LOG_URLS: {name: 'logUrls', type: tr.v.d.GenericSet}, 34 LOG_URLS: {name: 'logUrls', type: tr.v.d.GenericSet},
35 MASTERS: {name: 'masters', type: tr.v.d.GenericSet}, 35 MASTERS: {name: 'masters', type: tr.v.d.GenericSet},
36 MEMORY_AMOUNTS: {name: 'memoryAmounts', type: tr.v.d.GenericSet}, 36 MEMORY_AMOUNTS: {name: 'memoryAmounts', type: tr.v.d.GenericSet},
37 MERGED_FROM: {name: 'mergedFrom', type: tr.v.d.RelatedHistogramMap},
38 MERGED_TO: {name: 'mergedTo', type: tr.v.d.RelatedHistogramMap},
39 OS_NAMES: {name: 'osNames', type: tr.v.d.GenericSet}, 37 OS_NAMES: {name: 'osNames', type: tr.v.d.GenericSet},
40 OS_VERSIONS: {name: 'osVersions', type: tr.v.d.GenericSet}, 38 OS_VERSIONS: {name: 'osVersions', type: tr.v.d.GenericSet},
41 OWNERS: {name: 'owners', type: tr.v.d.GenericSet}, 39 OWNERS: {name: 'owners', type: tr.v.d.GenericSet},
42 PRODUCT_VERSIONS: {name: 'productVersions', type: tr.v.d.GenericSet}, 40 PRODUCT_VERSIONS: {name: 'productVersions', type: tr.v.d.GenericSet},
43 RELATED_NAMES: {name: 'relatedNames', type: tr.v.d.GenericSet}, 41 RELATED_NAMES: {name: 'relatedNames', type: tr.v.d.GenericSet},
44 SKIA_REVISIONS: {name: 'skiaRevisions', type: tr.v.d.GenericSet}, 42 SKIA_REVISIONS: {name: 'skiaRevisions', type: tr.v.d.GenericSet},
45 STORIES: {name: 'stories', type: tr.v.d.GenericSet}, 43 STORIES: {name: 'stories', type: tr.v.d.GenericSet},
46 STORYSET_REPEATS: {name: 'storysetRepeats', type: tr.v.d.GenericSet}, 44 STORYSET_REPEATS: {name: 'storysetRepeats', type: tr.v.d.GenericSet},
47 STORY_TAGS: {name: 'storyTags', type: tr.v.d.GenericSet}, 45 STORY_TAGS: {name: 'storyTags', type: tr.v.d.GenericSet},
48 TAG_MAP: {name: 'tagmap', type: tr.v.d.TagMap}, 46 TAG_MAP: {name: 'tagmap', type: tr.v.d.TagMap},
(...skipping 19 matching lines...) Expand all
68 const RESERVED_NAMES_SET = new Set(Object.values(RESERVED_NAMES)); 66 const RESERVED_NAMES_SET = new Set(Object.values(RESERVED_NAMES));
69 67
70 return { 68 return {
71 RESERVED_INFOS, 69 RESERVED_INFOS,
72 RESERVED_NAMES, 70 RESERVED_NAMES,
73 RESERVED_NAMES_SET, 71 RESERVED_NAMES_SET,
74 RESERVED_NAMES_TO_TYPES, 72 RESERVED_NAMES_TO_TYPES,
75 }; 73 };
76 }); 74 });
77 </script> 75 </script>
OLDNEW
« no previous file with comments | « tracing/tracing/value/diagnostics/reserved_infos.py ('k') | tracing/tracing/value/diagnostics/tag_map.html » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698