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

Unified Diff: tools/telemetry/telemetry/web_perf/metrics/timeline_based_metric.py

Issue 332213003: Move telemetry/core/timeline and timeline_data to telemetry/timeline. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 6 years, 6 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: tools/telemetry/telemetry/web_perf/metrics/timeline_based_metric.py
diff --git a/tools/telemetry/telemetry/web_perf/metrics/timeline_based_metric.py b/tools/telemetry/telemetry/web_perf/metrics/timeline_based_metric.py
index e37a1f80a385e8bec0a7d22ba0e78ae7940c0318..f406b12c1403169a175c9b550506c219cb5c6f00 100644
--- a/tools/telemetry/telemetry/web_perf/metrics/timeline_based_metric.py
+++ b/tools/telemetry/telemetry/web_perf/metrics/timeline_based_metric.py
@@ -29,7 +29,7 @@ def _TimeRangesHasOverlap(iterable_time_ranges):
class TimelineBasedMetric(object):
def __init__(self):
- """Computes metrics from a telemetry.core.timeline Model and a range
+ """Computes metrics from a telemetry.timeline Model and a range
"""
super(TimelineBasedMetric, self).__init__()
@@ -41,7 +41,7 @@ class TimelineBasedMetric(object):
within the interaction_records' start and end time ranges.
Args:
- model: An instance of telemetry.core.timeline.model.TimelineModel.
+ model: An instance of telemetry.timeline.model.TimelineModel.
interaction_records: A list of instances of TimelineInteractionRecord. If
the override of this method doesn't support overlapped ranges, use
VerifyNonOverlappedRecords to check that no records are overlapped.

Powered by Google App Engine
This is Rietveld 408576698