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

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

Issue 2982283002: Delete TelemetryInfo, MergedTelemetryInfo diagnostics. (Closed)
Patch Set: rebase 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
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 544e4f6efceac1c93f6f14905edf89ee4526f755..bdbaa5f20461473bd9eb543ef37da971829baf44 100644
--- a/tracing/tracing/value/diagnostics/reserved_infos.py
+++ b/tracing/tracing/value/diagnostics/reserved_infos.py
@@ -51,11 +51,6 @@ V8_COMMIT_POSITIONS = _Info('v8CommitPositions', 'DateRange')
V8_REVISIONS = _Info('v8Revisions', 'GenericSet')
WEBRTC_REVISIONS = _Info('webrtcRevisions', 'GenericSet')
-# DEPRECATED https://github.com/catapult-project/catapult/issues/3507
-INTERACTION_RECORD = _Info('tir', 'GenericSet')
-ITERATION = _Info('iteration') # Legacy name for TELEMETRY
-TELEMETRY = _Info('telemetry') # TelemetryInfo or MergedTelemetryInfo
-
def GetTypeForName(name):
for info in globals().itervalues():
if isinstance(info, _Info) and info.name == name:

Powered by Google App Engine
This is Rietveld 408576698