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 | 4 |
5 from telemetry.core.platform import tracing_category_filter | |
6 from telemetry.core.platform import tracing_options | |
7 from telemetry.page import action_runner | 5 from telemetry.page import action_runner |
8 from telemetry.page import page_test | 6 from telemetry.page import page_test |
9 from telemetry.timeline.model import TimelineModel | 7 from telemetry.timeline.model import TimelineModel |
| 8 from telemetry.timeline import tracing_category_filter |
| 9 from telemetry.timeline import tracing_options |
10 from telemetry.value import trace | 10 from telemetry.value import trace |
11 from telemetry.web_perf import smooth_gesture_util | 11 from telemetry.web_perf import smooth_gesture_util |
12 from telemetry.web_perf import timeline_interaction_record as tir_module | 12 from telemetry.web_perf import timeline_interaction_record as tir_module |
13 | 13 |
14 | 14 |
15 RUN_SMOOTH_ACTIONS = 'RunSmoothAllActions' | 15 RUN_SMOOTH_ACTIONS = 'RunSmoothAllActions' |
16 | 16 |
17 | 17 |
18 class TimelineController(object): | 18 class TimelineController(object): |
19 def __init__(self, enable_auto_issuing_record=True): | 19 def __init__(self, enable_auto_issuing_record=True): |
(...skipping 77 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
97 def model(self): | 97 def model(self): |
98 return self._model | 98 return self._model |
99 | 99 |
100 @property | 100 @property |
101 def renderer_process(self): | 101 def renderer_process(self): |
102 return self._renderer_process | 102 return self._renderer_process |
103 | 103 |
104 @property | 104 @property |
105 def smooth_records(self): | 105 def smooth_records(self): |
106 return self._smooth_records | 106 return self._smooth_records |
OLD | NEW |