| OLD | NEW |
| 1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2012 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 #ifndef BASE_LOGGING_WIN_H_ | 5 #ifndef BASE_LOGGING_WIN_H_ |
| 6 #define BASE_LOGGING_WIN_H_ | 6 #define BASE_LOGGING_WIN_H_ |
| 7 #pragma once | |
| 8 | 7 |
| 9 #include <string> | 8 #include <string> |
| 10 | 9 |
| 11 #include "base/base_export.h" | 10 #include "base/base_export.h" |
| 12 #include "base/basictypes.h" | 11 #include "base/basictypes.h" |
| 13 #include "base/win/event_trace_provider.h" | 12 #include "base/win/event_trace_provider.h" |
| 14 #include "base/logging.h" | 13 #include "base/logging.h" |
| 15 | 14 |
| 16 template <typename Type> | 15 template <typename Type> |
| 17 struct StaticMemorySingletonTraits; | 16 struct StaticMemorySingletonTraits; |
| (...skipping 54 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 72 // restored in OnEventsDisabled. | 71 // restored in OnEventsDisabled. |
| 73 logging::LogSeverity old_log_level_; | 72 logging::LogSeverity old_log_level_; |
| 74 | 73 |
| 75 friend struct StaticMemorySingletonTraits<LogEventProvider>; | 74 friend struct StaticMemorySingletonTraits<LogEventProvider>; |
| 76 DISALLOW_COPY_AND_ASSIGN(LogEventProvider); | 75 DISALLOW_COPY_AND_ASSIGN(LogEventProvider); |
| 77 }; | 76 }; |
| 78 | 77 |
| 79 } // namespace logging | 78 } // namespace logging |
| 80 | 79 |
| 81 #endif // BASE_LOGGING_WIN_H_ | 80 #endif // BASE_LOGGING_WIN_H_ |
| OLD | NEW |