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

Side by Side Diff: tools/perf/measurements/timeline_controller.py

Issue 1029263003: [telemetry] Sort imports in Telemetry and its dependents. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Ensure we're up to date. 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 unified diff | Download patch
OLDNEW
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
5 4
6 from telemetry.core.platform import tracing_category_filter 5 from telemetry.core.platform import tracing_category_filter
7 from telemetry.core.platform import tracing_options 6 from telemetry.core.platform import tracing_options
7 from telemetry.page.actions import action_runner
8 from telemetry.timeline.model import TimelineModel 8 from telemetry.timeline.model import TimelineModel
9 from telemetry.page.actions import action_runner
10 from telemetry.value import trace 9 from telemetry.value import trace
11 from telemetry.web_perf import timeline_interaction_record as tir_module 10 from telemetry.web_perf import timeline_interaction_record as tir_module
12 11
12 from measurements import smooth_gesture_util
13
13 14
14 RUN_SMOOTH_ACTIONS = 'RunSmoothAllActions' 15 RUN_SMOOTH_ACTIONS = 'RunSmoothAllActions'
15 16
16 17
17 class TimelineController(object): 18 class TimelineController(object):
18 def __init__(self): 19 def __init__(self):
19 super(TimelineController, self).__init__() 20 super(TimelineController, self).__init__()
20 self.trace_categories = None 21 self.trace_categories = None
21 self._model = None 22 self._model = None
22 self._renderer_process = None 23 self._renderer_process = None
(...skipping 66 matching lines...) Expand 10 before | Expand all | Expand 10 after
89 def model(self): 90 def model(self):
90 return self._model 91 return self._model
91 92
92 @property 93 @property
93 def renderer_process(self): 94 def renderer_process(self):
94 return self._renderer_process 95 return self._renderer_process
95 96
96 @property 97 @property
97 def smooth_records(self): 98 def smooth_records(self):
98 return self._smooth_records 99 return self._smooth_records
OLDNEW
« no previous file with comments | « tools/perf/measurements/thread_times_unittest.py ('k') | tools/perf/measurements/v8_detached_context_age_in_gc.py » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698