| OLD | NEW |
| 1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2012 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 declarations for trace_event.h. | 5 // This file contains the Windows-specific declarations for trace_event.h. |
| 6 #ifndef BASE_DEBUG_TRACE_EVENT_WIN_H_ | 6 #ifndef BASE_DEBUG_TRACE_EVENT_WIN_H_ |
| 7 #define BASE_DEBUG_TRACE_EVENT_WIN_H_ | 7 #define BASE_DEBUG_TRACE_EVENT_WIN_H_ |
| 8 #pragma once | |
| 9 | 8 |
| 10 #include <string> | 9 #include <string> |
| 11 | 10 |
| 12 #include "base/base_export.h" | 11 #include "base/base_export.h" |
| 13 #include "base/debug/trace_event.h" | 12 #include "base/debug/trace_event.h" |
| 14 #include "base/win/event_trace_provider.h" | 13 #include "base/win/event_trace_provider.h" |
| 15 | 14 |
| 16 // Fwd. | 15 // Fwd. |
| 17 template <typename Type> | 16 template <typename Type> |
| 18 struct StaticMemorySingletonTraits; | 17 struct StaticMemorySingletonTraits; |
| (...skipping 96 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 115 // The "name" string as a zero-terminated ASCII string. | 114 // The "name" string as a zero-terminated ASCII string. |
| 116 // The id pointer in the machine bitness. | 115 // The id pointer in the machine bitness. |
| 117 // The "extra" string as a zero-terminated ASCII string. | 116 // The "extra" string as a zero-terminated ASCII string. |
| 118 // Optionally the stack trace, consisting of a DWORD "depth", followed | 117 // Optionally the stack trace, consisting of a DWORD "depth", followed |
| 119 // by an array of void* (machine bitness) of length "depth". | 118 // by an array of void* (machine bitness) of length "depth". |
| 120 | 119 |
| 121 } // namespace debug | 120 } // namespace debug |
| 122 } // namespace base | 121 } // namespace base |
| 123 | 122 |
| 124 #endif // BASE_DEBUG_TRACE_EVENT_WIN_H_ | 123 #endif // BASE_DEBUG_TRACE_EVENT_WIN_H_ |
| OLD | NEW |