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 #include "base/trace_event/trace_event_etw_export_win.h" | 5 #include "base/trace_event/trace_event_etw_export_win.h" |
6 | 6 |
7 #include <stddef.h> | 7 #include <stddef.h> |
8 | 8 |
9 #include "base/command_line.h" | 9 #include "base/command_line.h" |
10 #include "base/logging.h" | 10 #include "base/logging.h" |
11 #include "base/memory/singleton.h" | 11 #include "base/memory/singleton.h" |
12 #include "base/strings/string_tokenizer.h" | 12 #include "base/strings/string_tokenizer.h" |
13 #include "base/strings/utf_string_conversions.h" | 13 #include "base/strings/utf_string_conversions.h" |
14 #include "base/threading/platform_thread.h" | 14 #include "base/threading/platform_thread.h" |
15 #include "base/trace_event/trace_event.h" | 15 #include "base/trace_event/trace_event.h" |
16 #include "base/trace_event/trace_event_impl.h" | 16 #include "base/trace_event/trace_event_impl.h" |
17 | 17 |
18 // The GetProcAddress technique is borrowed from | 18 // The GetProcAddress technique is borrowed from |
19 // https://github.com/google/UIforETW/tree/master/ETWProviders | 19 // https://github.com/google/UIforETW/tree/master/ETWProviders |
20 // | 20 // |
21 // EVNTAPI is used in evntprov.h which is included by chrome_events_win.h. | 21 // EVNTAPI is used in evntprov.h which is included by chrome_events_win.h. |
22 // We define EVNTAPI without the DECLSPEC_IMPORT specifier so that we can | 22 // We define EVNTAPI without the DECLSPEC_IMPORT specifier so that we can |
23 // implement these functions locally instead of using the import library, and | 23 // implement these functions locally instead of using the import library, and |
24 // can therefore still run on Windows XP. | 24 // can therefore still run on Windows XP. |
25 #define EVNTAPI __stdcall | 25 #define EVNTAPI __stdcall |
26 // Include the event register/write/unregister macros compiled from the manifest | 26 // Include the event register/write/unregister macros compiled from the manifest |
27 // file. Note that this includes evntprov.h which requires a Vista+ Windows SDK. | 27 // file. Note that this includes evntprov.h which requires a Vista+ Windows SDK. |
28 // | 28 // |
29 // In SHARED_INTERMEDIATE_DIR. | 29 // In SHARED_INTERMEDIATE_DIR. |
30 #include "base/trace_event/etw_manifest/chrome_events_win.h" // NOLINT | 30 //#include "base/trace_event/etw_manifest/chrome_events_win.h" // NOLINT |
31 | 31 #if 0 |
32 namespace { | 32 namespace { |
33 // Typedefs for use with GetProcAddress | 33 // Typedefs for use with GetProcAddress |
34 typedef ULONG(__stdcall* tEventRegister)(LPCGUID ProviderId, | 34 typedef ULONG(__stdcall* tEventRegister)(LPCGUID ProviderId, |
35 PENABLECALLBACK EnableCallback, | 35 PENABLECALLBACK EnableCallback, |
36 PVOID CallbackContext, | 36 PVOID CallbackContext, |
37 PREGHANDLE RegHandle); | 37 PREGHANDLE RegHandle); |
38 typedef ULONG(__stdcall* tEventWrite)(REGHANDLE RegHandle, | 38 typedef ULONG(__stdcall* tEventWrite)(REGHANDLE RegHandle, |
39 PCEVENT_DESCRIPTOR EventDescriptor, | 39 PCEVENT_DESCRIPTOR EventDescriptor, |
40 ULONG UserDataCount, | 40 ULONG UserDataCount, |
41 PEVENT_DATA_DESCRIPTOR UserData); | 41 PEVENT_DATA_DESCRIPTOR UserData); |
(...skipping 387 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
429 // static | 429 // static |
430 void TraceEventETWExport::UpdateETWKeyword() { | 430 void TraceEventETWExport::UpdateETWKeyword() { |
431 if (!IsETWExportEnabled()) | 431 if (!IsETWExportEnabled()) |
432 return; | 432 return; |
433 auto* instance = GetInstance(); | 433 auto* instance = GetInstance(); |
434 DCHECK(instance); | 434 DCHECK(instance); |
435 instance->UpdateEnabledCategories(); | 435 instance->UpdateEnabledCategories(); |
436 } | 436 } |
437 } // namespace trace_event | 437 } // namespace trace_event |
438 } // namespace base | 438 } // namespace base |
| 439 #endif |
OLD | NEW |