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

Unified Diff: tracing/tracing/value/diagnostics/reserved_infos.py

Issue 2977283002: Ownership into GenericSets (Closed)
Patch Set: Fix tests after reabse Created 3 years, 5 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
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:
« no previous file with comments | « tracing/tracing/value/diagnostics/ownership_test.html ('k') | tracing/tracing/value/diagnostics/reserved_names.html » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698