OLD | NEW |
1 # Copyright 2014 The Chromium Authors. All rights reserved. | 1 # Copyright 2014 The Chromium Authors. All rights reserved. |
2 # Use of this source code is governed by a BSD-style license that can be | 2 # Use of this source code is governed by a BSD-style license that can be |
3 # found in the LICENSE file. | 3 # found in the LICENSE file. |
4 from measurements import smooth_gesture_util | 4 from measurements import smooth_gesture_util |
5 | 5 |
6 from telemetry.core.backends.chrome import tracing_backend | 6 from telemetry.core.backends.chrome import tracing_backend |
7 from telemetry.core.timeline.model import TimelineModel | 7 from telemetry.timeline.model import TimelineModel |
8 from telemetry.page.actions import action_runner | 8 from telemetry.page.actions import action_runner |
9 from telemetry.web_perf import timeline_interaction_record as tir_module | 9 from telemetry.web_perf import timeline_interaction_record as tir_module |
10 | 10 |
11 | 11 |
12 RUN_SMOOTH_ACTIONS = 'RunSmoothAllActions' | 12 RUN_SMOOTH_ACTIONS = 'RunSmoothAllActions' |
13 | 13 |
14 | 14 |
15 class TimelineController(object): | 15 class TimelineController(object): |
16 def __init__(self): | 16 def __init__(self): |
17 super(TimelineController, self).__init__() | 17 super(TimelineController, self).__init__() |
(...skipping 64 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
82 def model(self): | 82 def model(self): |
83 return self._model | 83 return self._model |
84 | 84 |
85 @property | 85 @property |
86 def renderer_process(self): | 86 def renderer_process(self): |
87 return self._renderer_process | 87 return self._renderer_process |
88 | 88 |
89 @property | 89 @property |
90 def smooth_records(self): | 90 def smooth_records(self): |
91 return self._smooth_records | 91 return self._smooth_records |
OLD | NEW |