| Index: tracing/tracing/value/diagnostics/reserved_infos.py
|
| diff --git a/tracing/tracing/value/diagnostics/reserved_infos.py b/tracing/tracing/value/diagnostics/reserved_infos.py
|
| index 27946ea93caab77854c72a10cd593a18d7a8da8a..1e649dd66010b8cefb82242df2be30acdb75de80 100644
|
| --- a/tracing/tracing/value/diagnostics/reserved_infos.py
|
| +++ b/tracing/tracing/value/diagnostics/reserved_infos.py
|
| @@ -37,6 +37,7 @@ MERGED_FROM = _Info('merged from', 'RelatedHistogramSet')
|
| MERGED_TO = _Info('merged to', 'RelatedHistogramSet')
|
| OS_NAMES = _Info('os names', 'GenericSet')
|
| OS_VERSIONS = _Info('os versions', 'GenericSet')
|
| +OWNERS = _Info('owners', 'GenericSet')
|
| PRODUCT_VERSIONS = _Info('product versions', 'GenericSet')
|
| RELATED_NAMES = _Info('related names', 'GenericSet')
|
| SKIA_REVISIONS = _Info('skia revisions', 'GenericSet')
|
| @@ -58,9 +59,6 @@ ITERATION = _Info('iteration') # Legacy name for TELEMETRY
|
| REVISIONS = _Info('revisions') # RevisionInfo or MergedRevisionInfo
|
| TELEMETRY = _Info('telemetry') # TelemetryInfo or MergedTelemetryInfo
|
|
|
| -# TODO(#3507) Change OWNERS to GenericSet of email addresses.
|
| -OWNERS = _Info('owners', 'Ownership')
|
| -
|
| def GetTypeForName(name):
|
| for info in globals().itervalues():
|
| if isinstance(info, _Info) and info.name == name:
|
|
|