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

Unified Diff: base/win/event_trace_controller.h

Issue 4517004: Move Windows-specific Event Tracing for Windows implementation to base/win. ... (Closed) Base URL: svn://chrome-svn/chrome/trunk/src/
Patch Set: Fixed another ETW user in Chrome Frame Created 10 years, 1 month 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 side-by-side diff with in-line comments
Download patch
« no previous file with comments | « base/win/event_trace_consumer_unittest.cc ('k') | base/win/event_trace_controller.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: base/win/event_trace_controller.h
===================================================================
--- base/win/event_trace_controller.h (revision 65062)
+++ base/win/event_trace_controller.h (working copy)
@@ -17,8 +17,8 @@
//
// A trace consumer consumes events from zero or one realtime session,
// as well as potentially from multiple binary trace files.
-#ifndef BASE_EVENT_TRACE_CONTROLLER_WIN_H_
-#define BASE_EVENT_TRACE_CONTROLLER_WIN_H_
+#ifndef BASE_WIN_EVENT_TRACE_CONTROLLER_H_
+#define BASE_WIN_EVENT_TRACE_CONTROLLER_H_
#pragma once
#include <windows.h>
@@ -27,6 +27,9 @@
#include <string>
#include "base/basictypes.h"
+namespace base {
+namespace win {
+
// Utility class to make it easier to work with EVENT_TRACE_PROPERTIES.
// The EVENT_TRACE_PROPERTIES structure contains information about an
// event tracing session.
@@ -141,4 +144,7 @@
DISALLOW_COPY_AND_ASSIGN(EtwTraceController);
};
-#endif // BASE_EVENT_TRACE_CONTROLLER_WIN_H_
+} // namespace win
+} // namespace base
+
+#endif // BASE_WIN_EVENT_TRACE_CONTROLLER_H_
« no previous file with comments | « base/win/event_trace_consumer_unittest.cc ('k') | base/win/event_trace_controller.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698