Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(432)

Side by Side Diff: base/trace_event/trace_event_etw_export_win.h

Issue 1038453002: Add option to export tracing events to ETW. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Add missing dependency in base.gyp Created 5 years, 8 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
(Empty)
1 // Copyright (c) 2015 The Chromium Authors. All rights reserved.
Lei Zhang 2015/04/15 08:10:36 nit: no (c)
Georges Khalil 2015/04/15 15:10:32 Done (same in .cc too).
2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file.
4
5 // This file contains the Windows-specific exporting to ETW.
6 #ifndef BASE_TRACE_EVENT_TRACE_ETW_EXPORT_H_
7 #define BASE_TRACE_EVENT_TRACE_ETW_EXPORT_H_
8
9 #include "base/base_export.h"
10 #include "base/trace_event/trace_event_impl.h"
11
12 // Fwd.
13 template <typename Type>
14 struct StaticMemorySingletonTraits;
15
16 namespace base {
17 namespace trace_event {
18
19 class BASE_EXPORT TraceEventETWExport {
20 public:
21 ~TraceEventETWExport();
22
23 // Retrieves the singleton.
24 // Note that this may return NULL post-AtExit processing.
25 static TraceEventETWExport* GetInstance();
26
27 static void EnableETWExport();
28 static void DisableETWExport();
29
30 static bool isETWExportEnabled() { return GetInstance()->ETWExportEnabled_; }
31
32 static void AddEvent(
Lei Zhang 2015/04/15 08:10:36 The above methods seem more obvious, but AddEvent(
Georges Khalil 2015/04/15 15:10:32 I added documentation for all functions. Should be
33 char phase,
34 const unsigned char* category_group_enabled,
35 const char* name,
36 unsigned long long id,
37 int num_args,
38 const char** arg_names,
39 const unsigned char* arg_types,
40 const unsigned long long* arg_values,
41 const scoped_refptr<ConvertableToTraceFormat>* convertable_values);
42
43 static void AddCustomEvent(const char* name,
Lei Zhang 2015/04/15 08:10:36 This doesn't seem to have any callers?
Georges Khalil 2015/04/15 15:10:32 Not yet, this is used to add an event that is only
44 char const* phase,
45 const char* arg_name_1,
46 const char* arg_value_1,
47 const char* arg_name_2,
48 const char* arg_value_2,
49 const char* arg_name_3,
50 const char* arg_value_3);
51
52 void Resurrect();
53
54 private:
55 bool ETWExportEnabled_;
56 // Ensure only the provider can construct us.
57 friend struct StaticMemorySingletonTraits<TraceEventETWExport>;
58 TraceEventETWExport();
59
60 DISALLOW_COPY_AND_ASSIGN(TraceEventETWExport);
61 };
62
63 } // namespace trace_event
64 } // namespace base
65
66 #endif // BASE_TRACE_EVENT_TRACE_ETW_EXPORT_H_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698