| Index: base/win/event_trace_controller.cc
|
| ===================================================================
|
| --- base/win/event_trace_controller.cc (revision 65062)
|
| +++ base/win/event_trace_controller.cc (working copy)
|
| @@ -3,9 +3,12 @@
|
| // found in the LICENSE file.
|
| //
|
| // Implementation of a Windows event trace controller class.
|
| -#include "base/event_trace_controller_win.h"
|
| +#include "base/win/event_trace_controller.h"
|
| #include "base/logging.h"
|
|
|
| +namespace base {
|
| +namespace win {
|
| +
|
| EtwTraceProperties::EtwTraceProperties() {
|
| memset(buffer_, 0, sizeof(buffer_));
|
| EVENT_TRACE_PROPERTIES* prop = get();
|
| @@ -165,3 +168,6 @@
|
| EVENT_TRACE_CONTROL_FLUSH);
|
| return HRESULT_FROM_WIN32(err);
|
| }
|
| +
|
| +} // namespace win
|
| +} // namespace base
|
|
|