Index: base/win/event_trace_consumer.h |
=================================================================== |
--- base/win/event_trace_consumer.h (revision 65062) |
+++ base/win/event_trace_consumer.h (working copy) |
@@ -3,8 +3,8 @@ |
// found in the LICENSE file. |
// |
// Declaration of a Windows event trace consumer base class. |
-#ifndef BASE_EVENT_TRACE_CONSUMER_WIN_H_ |
-#define BASE_EVENT_TRACE_CONSUMER_WIN_H_ |
+#ifndef BASE_WIN_EVENT_TRACE_CONSUMER_H_ |
+#define BASE_WIN_EVENT_TRACE_CONSUMER_H_ |
#pragma once |
#include <windows.h> |
@@ -13,6 +13,9 @@ |
#include <vector> |
#include "base/basictypes.h" |
+namespace base { |
+namespace win { |
+ |
// This class is a base class that makes it easier to consume events |
// from realtime or file sessions. Concrete consumers need to sublass |
// a specialization of this class and override the ProcessEvent and/or |
@@ -141,4 +144,7 @@ |
return hr; |
} |
-#endif // BASE_EVENT_TRACE_CONSUMER_WIN_H_ |
+} // namespace win |
+} // namespace base |
+ |
+#endif // BASE_WIN_EVENT_TRACE_CONSUMER_H_ |