| OLD | NEW |
| 1 // Copyright (c) 2015 The Chromium Authors. All rights reserved. | 1 // Copyright 2015 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 #ifndef BASE_TRACE_EVENT_TRACE_CONFIG_H_ | 5 #ifndef BASE_TRACE_EVENT_TRACE_CONFIG_H_ |
| 6 #define BASE_TRACE_EVENT_TRACE_CONFIG_H_ | 6 #define BASE_TRACE_EVENT_TRACE_CONFIG_H_ |
| 7 | 7 |
| 8 #include <string> | 8 #include <string> |
| 9 #include <vector> | 9 #include <vector> |
| 10 | 10 |
| 11 #include "base/base_export.h" | 11 #include "base/base_export.h" |
| (...skipping 217 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 229 StringList included_categories_; | 229 StringList included_categories_; |
| 230 StringList disabled_categories_; | 230 StringList disabled_categories_; |
| 231 StringList excluded_categories_; | 231 StringList excluded_categories_; |
| 232 StringList synthetic_delays_; | 232 StringList synthetic_delays_; |
| 233 }; | 233 }; |
| 234 | 234 |
| 235 } // namespace trace_event | 235 } // namespace trace_event |
| 236 } // namespace base | 236 } // namespace base |
| 237 | 237 |
| 238 #endif // BASE_TRACE_EVENT_TRACE_CONFIG_H_ | 238 #endif // BASE_TRACE_EVENT_TRACE_CONFIG_H_ |
| OLD | NEW |