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 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 |
OLD | NEW |