| OLD | NEW |
| 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 Loading... |
| 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.RelatedHistogramSet}, | 37 MERGED_FROM: {name: 'mergedFrom', type: tr.v.d.RelatedHistogramMap}, |
| 38 MERGED_TO: {name: 'mergedTo', type: tr.v.d.RelatedHistogramSet}, | 38 MERGED_TO: {name: 'mergedTo', type: tr.v.d.RelatedHistogramMap}, |
| 39 OS_NAMES: {name: 'osNames', type: tr.v.d.GenericSet}, | 39 OS_NAMES: {name: 'osNames', type: tr.v.d.GenericSet}, |
| 40 OS_VERSIONS: {name: 'osVersions', type: tr.v.d.GenericSet}, | 40 OS_VERSIONS: {name: 'osVersions', type: tr.v.d.GenericSet}, |
| 41 OWNERS: {name: 'owners', type: tr.v.d.GenericSet}, | 41 OWNERS: {name: 'owners', type: tr.v.d.GenericSet}, |
| 42 PRODUCT_VERSIONS: {name: 'productVersions', type: tr.v.d.GenericSet}, | 42 PRODUCT_VERSIONS: {name: 'productVersions', type: tr.v.d.GenericSet}, |
| 43 RELATED_NAMES: {name: 'relatedNames', type: tr.v.d.GenericSet}, | 43 RELATED_NAMES: {name: 'relatedNames', type: tr.v.d.GenericSet}, |
| 44 SKIA_REVISIONS: {name: 'skiaRevisions', type: tr.v.d.GenericSet}, | 44 SKIA_REVISIONS: {name: 'skiaRevisions', type: tr.v.d.GenericSet}, |
| 45 STORIES: {name: 'stories', type: tr.v.d.GenericSet}, | 45 STORIES: {name: 'stories', type: tr.v.d.GenericSet}, |
| 46 STORYSET_REPEATS: {name: 'storysetRepeats', type: tr.v.d.GenericSet}, | 46 STORYSET_REPEATS: {name: 'storysetRepeats', type: tr.v.d.GenericSet}, |
| 47 STORY_TAGS: {name: 'storyTags', type: tr.v.d.GenericSet}, | 47 STORY_TAGS: {name: 'storyTags', type: tr.v.d.GenericSet}, |
| 48 TAG_MAP: {name: 'tagmap', type: tr.v.d.TagMap}, | 48 TAG_MAP: {name: 'tagmap', type: tr.v.d.TagMap}, |
| (...skipping 25 matching lines...) Expand all Loading... |
| 74 const RESERVED_NAMES_SET = new Set(Object.values(RESERVED_NAMES)); | 74 const RESERVED_NAMES_SET = new Set(Object.values(RESERVED_NAMES)); |
| 75 | 75 |
| 76 return { | 76 return { |
| 77 RESERVED_INFOS, | 77 RESERVED_INFOS, |
| 78 RESERVED_NAMES, | 78 RESERVED_NAMES, |
| 79 RESERVED_NAMES_SET, | 79 RESERVED_NAMES_SET, |
| 80 RESERVED_NAMES_TO_TYPES, | 80 RESERVED_NAMES_TO_TYPES, |
| 81 }; | 81 }; |
| 82 }); | 82 }); |
| 83 </script> | 83 </script> |
| OLD | NEW |