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: tools/telemetry/telemetry/value/failure.py

Issue 1057213005: [Telemetry] Rename interaction_record field of value to tir_label. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 5 years, 9 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
« no previous file with comments | « tools/telemetry/telemetry/value/__init__.py ('k') | tools/telemetry/telemetry/value/histogram.py » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: tools/telemetry/telemetry/value/failure.py
diff --git a/tools/telemetry/telemetry/value/failure.py b/tools/telemetry/telemetry/value/failure.py
index aa074246e41d9e291ac964c8797cd207e4f5a707..cd614e70f9712243053ec459008c6c77ed6bed95 100644
--- a/tools/telemetry/telemetry/value/failure.py
+++ b/tools/telemetry/telemetry/value/failure.py
@@ -10,7 +10,7 @@ from telemetry import value as value_module
class FailureValue(value_module.Value):
- def __init__(self, page, exc_info, description=None, interaction_record=None):
+ def __init__(self, page, exc_info, description=None, tir_label=None):
"""A value representing a failure when running the page.
Args:
@@ -20,7 +20,7 @@ class FailureValue(value_module.Value):
"""
exc_type = exc_info[0].__name__
super(FailureValue, self).__init__(page, exc_type, '', True, description,
- interaction_record)
+ tir_label)
self._exc_info = exc_info
@classmethod
« no previous file with comments | « tools/telemetry/telemetry/value/__init__.py ('k') | tools/telemetry/telemetry/value/histogram.py » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698