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

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

Issue 1231643002: [Startup Tracing][Telemetry] Move tracing_options and tracing_category_filter (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 5 years, 5 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
« no previous file with comments | « tools/perf/measurements/thread_times.py ('k') | tools/perf/measurements/v8_gc_times.py » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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 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
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
OLDNEW
« no previous file with comments | « tools/perf/measurements/thread_times.py ('k') | tools/perf/measurements/v8_gc_times.py » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698