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

Side by Side Diff: tools/telemetry/telemetry/core/platform/tracing_options.py

Issue 445793004: Fix import order with isort tool. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 6 years, 4 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 4
5 class TracingOptions(object): 5 class TracingOptions(object):
6 """Tracing options control which core tracing systems should be enabled. 6 """Tracing options control which core tracing systems should be enabled.
7 7
8 This simply turns on those systems. If those systems have additional options, 8 This simply turns on those systems. If those systems have additional options,
9 e.g. what to trace, then they are typically configured by adding 9 e.g. what to trace, then they are typically configured by adding
10 categories to the TracingCategoryFilter. 10 categories to the TracingCategoryFilter.
11 """ 11 """
12 def __init__(self): 12 def __init__(self):
13 self.enable_chrome_trace = False 13 self.enable_chrome_trace = False
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698