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

Side by Side Diff: base/win/event_trace_provider.h

Issue 1550493002: Switch to standard integer types in base/win/. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 4 years, 12 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
« no previous file with comments | « base/win/event_trace_controller_unittest.cc ('k') | base/win/i18n.h » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 // Copyright (c) 2011 The Chromium Authors. All rights reserved. 1 // Copyright (c) 2011 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 // Declaration of a Windows event trace provider class, to allow using 5 // Declaration of a Windows event trace provider class, to allow using
6 // Windows Event Tracing for logging transport and control. 6 // Windows Event Tracing for logging transport and control.
7 #ifndef BASE_WIN_EVENT_TRACE_PROVIDER_H_ 7 #ifndef BASE_WIN_EVENT_TRACE_PROVIDER_H_
8 #define BASE_WIN_EVENT_TRACE_PROVIDER_H_ 8 #define BASE_WIN_EVENT_TRACE_PROVIDER_H_
9 9
10 #include <windows.h> 10 #include <windows.h>
11 #include <wmistr.h> 11 #include <wmistr.h>
12 #include <evntrace.h> 12 #include <evntrace.h>
13 #include <stddef.h>
13 #include <stdint.h> 14 #include <stdint.h>
14 15
15 #include <limits> 16 #include <limits>
16 17
17 #include "base/base_export.h" 18 #include "base/base_export.h"
18 #include "base/macros.h" 19 #include "base/macros.h"
19 20
20 namespace base { 21 namespace base {
21 namespace win { 22 namespace win {
22 23
(...skipping 151 matching lines...) Expand 10 before | Expand all | Expand 10 after
174 // RegisterTraceGuids. Non-const, because that's how the API needs it. 175 // RegisterTraceGuids. Non-const, because that's how the API needs it.
175 static TRACE_GUID_REGISTRATION obligatory_guid_registration_; 176 static TRACE_GUID_REGISTRATION obligatory_guid_registration_;
176 177
177 DISALLOW_COPY_AND_ASSIGN(EtwTraceProvider); 178 DISALLOW_COPY_AND_ASSIGN(EtwTraceProvider);
178 }; 179 };
179 180
180 } // namespace win 181 } // namespace win
181 } // namespace base 182 } // namespace base
182 183
183 #endif // BASE_WIN_EVENT_TRACE_PROVIDER_H_ 184 #endif // BASE_WIN_EVENT_TRACE_PROVIDER_H_
OLDNEW
« no previous file with comments | « base/win/event_trace_controller_unittest.cc ('k') | base/win/i18n.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698