| OLD | NEW |
| 1 // Copyright 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 CONTENT_PUBLIC_BROWSER_BACKGROUND_TRACING_CONFIG_H_ | 5 #ifndef CONTENT_PUBLIC_BROWSER_BACKGROUND_TRACING_CONFIG_H_ |
| 6 #define CONTENT_PUBLIC_BROWSER_BACKGROUND_TRACING_CONFIG_H_ | 6 #define CONTENT_PUBLIC_BROWSER_BACKGROUND_TRACING_CONFIG_H_ |
| 7 | 7 |
| 8 #include "base/memory/scoped_ptr.h" |
| 8 #include "base/trace_event/trace_event_impl.h" | 9 #include "base/trace_event/trace_event_impl.h" |
| 9 #include "content/common/content_export.h" | 10 #include "content/common/content_export.h" |
| 10 | 11 |
| 11 namespace base { | 12 namespace base { |
| 12 class DictionaryValue; | 13 class DictionaryValue; |
| 13 } | 14 } |
| 14 | 15 |
| 15 namespace content { | 16 namespace content { |
| 16 | 17 |
| 17 // BackgroundTracingConfig is passed to the BackgroundTracingManager to | 18 // BackgroundTracingConfig is passed to the BackgroundTracingManager to |
| (...skipping 16 matching lines...) Expand all Loading... |
| 34 private: | 35 private: |
| 35 friend class BackgroundTracingConfigImpl; | 36 friend class BackgroundTracingConfigImpl; |
| 36 explicit BackgroundTracingConfig(TracingMode tracing_mode); | 37 explicit BackgroundTracingConfig(TracingMode tracing_mode); |
| 37 | 38 |
| 38 const TracingMode tracing_mode_; | 39 const TracingMode tracing_mode_; |
| 39 }; | 40 }; |
| 40 | 41 |
| 41 } // namespace content | 42 } // namespace content |
| 42 | 43 |
| 43 #endif // CONTENT_PUBLIC_BROWSER_BACKGROUND_TRACING_CONFIG_H_ | 44 #endif // CONTENT_PUBLIC_BROWSER_BACKGROUND_TRACING_CONFIG_H_ |
| OLD | NEW |