| Index: util/win/ntstatus_logging.cc
|
| diff --git a/util/win/ntstatus_logging.cc b/util/win/ntstatus_logging.cc
|
| index 6a2abee0d3968fbd9c5ebc9f057cb4ca907606df..4c243cc5752ae4e8b8d797cf48a19dc53b17e5b1 100644
|
| --- a/util/win/ntstatus_logging.cc
|
| +++ b/util/win/ntstatus_logging.cc
|
| @@ -43,16 +43,22 @@ std::string FormatNtstatus(DWORD ntstatus) {
|
|
|
| namespace logging {
|
|
|
| -NtstatusLogMessage::NtstatusLogMessage(const char* function,
|
| - const char* file_path,
|
| - int line,
|
| - LogSeverity severity,
|
| - DWORD ntstatus)
|
| +NtstatusLogMessage::NtstatusLogMessage(
|
| +#if defined(MINI_CHROMIUM_BASE_LOGGING_H_)
|
| + const char* function,
|
| +#endif
|
| + const char* file_path,
|
| + int line,
|
| + LogSeverity severity,
|
| + DWORD ntstatus)
|
| : LogMessage(
|
| #if defined(MINI_CHROMIUM_BASE_LOGGING_H_)
|
| - function,
|
| + function,
|
| #endif
|
| - file_path, line, severity), ntstatus_(ntstatus) {
|
| + file_path,
|
| + line,
|
| + severity),
|
| + ntstatus_(ntstatus) {
|
| }
|
|
|
| NtstatusLogMessage::~NtstatusLogMessage() {
|
|
|