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

Unified Diff: tools/telemetry/telemetry/web_perf/timeline_interaction_record.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/timeline_interaction_record.py
diff --git a/tools/telemetry/telemetry/web_perf/timeline_interaction_record.py b/tools/telemetry/telemetry/web_perf/timeline_interaction_record.py
index 45e6a349780d49e46f71bba0a84e03c4b8b305ab..a60088ece51e91faca5bdda69395732e84e4ab65 100644
--- a/tools/telemetry/telemetry/web_perf/timeline_interaction_record.py
+++ b/tools/telemetry/telemetry/web_perf/timeline_interaction_record.py
@@ -5,7 +5,7 @@
import re
from telemetry import decorators
-import telemetry.core.timeline.bounds as timeline_bounds
+import telemetry.timeline.bounds as timeline_bounds
IS_SMOOTH = 'is_smooth'
@@ -85,7 +85,7 @@ class TimelineInteractionRecord(object):
"""Construct an timeline_interaction_record from an async event.
Args:
async_event: An instance of
- telemetry.core.timeline.async_slices.AsyncSlice
+ telemetry.timeline.async_slices.AsyncSlice
"""
assert async_event.start_thread == async_event.end_thread, (
'Start thread of this record\'s async event is not the same as its '
@@ -170,7 +170,7 @@ class TimelineInteractionRecord(object):
_GetOverlappedThreadTimeForSliceInDifferentThread for more details)
Args:
- timeline_slice: An instance of telemetry.core.timeline.slice.Slice
+ timeline_slice: An instance of telemetry.timeline.slice.Slice
"""
if not self._async_event:
raise ThreadTimeRangeOverlappedException(

Powered by Google App Engine
This is Rietveld 408576698