| 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 // This file contains the Windows-specific exporting to ETW. | 5 // This file contains the Windows-specific exporting to ETW. |
| 6 #ifndef BASE_TRACE_EVENT_TRACE_ETW_EXPORT_H_ | 6 #ifndef BASE_TRACE_EVENT_TRACE_EVENT_ETW_EXPORT_WIN_H_ |
| 7 #define BASE_TRACE_EVENT_TRACE_ETW_EXPORT_H_ | 7 #define BASE_TRACE_EVENT_TRACE_EVENT_ETW_EXPORT_WIN_H_ |
| 8 | 8 |
| 9 #include "base/base_export.h" | 9 #include "base/base_export.h" |
| 10 #include "base/trace_event/trace_event_impl.h" | 10 #include "base/trace_event/trace_event_impl.h" |
| 11 | 11 |
| 12 // Fwd. | 12 // Fwd. |
| 13 template <typename Type> | 13 template <typename Type> |
| 14 struct StaticMemorySingletonTraits; | 14 struct StaticMemorySingletonTraits; |
| 15 | 15 |
| 16 namespace base { | 16 namespace base { |
| 17 namespace trace_event { | 17 namespace trace_event { |
| (...skipping 47 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 65 // Ensure only the provider can construct us. | 65 // Ensure only the provider can construct us. |
| 66 friend struct StaticMemorySingletonTraits<TraceEventETWExport>; | 66 friend struct StaticMemorySingletonTraits<TraceEventETWExport>; |
| 67 TraceEventETWExport(); | 67 TraceEventETWExport(); |
| 68 | 68 |
| 69 DISALLOW_COPY_AND_ASSIGN(TraceEventETWExport); | 69 DISALLOW_COPY_AND_ASSIGN(TraceEventETWExport); |
| 70 }; | 70 }; |
| 71 | 71 |
| 72 } // namespace trace_event | 72 } // namespace trace_event |
| 73 } // namespace base | 73 } // namespace base |
| 74 | 74 |
| 75 #endif // BASE_TRACE_EVENT_TRACE_ETW_EXPORT_H_ | 75 #endif // BASE_TRACE_EVENT_TRACE_EVENT_ETW_EXPORT_WIN_H_ |
| OLD | NEW |