| Index: content/common/content_ipc_logging.cc
|
| diff --git a/content/common/content_ipc_logging.cc b/content/common/content_ipc_logging.cc
|
| index 2012f07c3ac6676774d909012591da3fb16b015b..50788e358bcb575d26c548b8ceec996c9cb995c2 100644
|
| --- a/content/common/content_ipc_logging.cc
|
| +++ b/content/common/content_ipc_logging.cc
|
| @@ -2,19 +2,17 @@
|
| // Use of this source code is governed by a BSD-style license that can be
|
| // found in the LICENSE file.
|
|
|
| -#include "ipc/ipc_message.h" // For IPC_MESSAGE_LOG_ENABLED.
|
| -
|
| #include <stdint.h>
|
|
|
| -#if defined(IPC_MESSAGE_LOG_ENABLED)
|
| +#include "ipc/ipc_features.h"
|
| +
|
| +#if BUILDFLAG(IPC_MESSAGE_LOG_ENABLED)
|
| #define IPC_MESSAGE_MACROS_LOG_ENABLED
|
| #include "content/public/common/content_ipc_logging.h"
|
| #define IPC_LOG_TABLE_ADD_ENTRY(msg_id, logger) \
|
| content::RegisterIPCLogger(msg_id, logger)
|
| #include "content/common/all_messages.h"
|
| -#endif
|
|
|
| -#if defined(IPC_MESSAGE_LOG_ENABLED)
|
|
|
| #include "base/containers/hash_tables.h"
|
| #include "base/lazy_instance.h"
|
| @@ -36,4 +34,4 @@ void RegisterIPCLogger(uint32_t msg_id, LogFunction logger) {
|
|
|
| } // content
|
|
|
| -#endif
|
| +#endif // BUILDFLAG(IPC_MESSAGE_LOG_ENABLED)
|
|
|