| Index: content/shell/shell_main_delegate.cc
|
| diff --git a/content/shell/shell_main_delegate.cc b/content/shell/shell_main_delegate.cc
|
| index 3a2532dba5ed0afceecba038055dfb86d9fb69a1..37ab3124ea357360b5ebd047799f2395420ebae1 100644
|
| --- a/content/shell/shell_main_delegate.cc
|
| +++ b/content/shell/shell_main_delegate.cc
|
| @@ -21,6 +21,16 @@
|
| #include "ui/base/ui_base_paths.h"
|
| #include "ui/gl/gl_switches.h"
|
|
|
| +#include "ipc/ipc_message.h" // For IPC_MESSAGE_LOG_ENABLED.
|
| +
|
| +#if defined(OS_POSIX) && defined(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/shell/shell_messages.h"
|
| +#endif
|
| +
|
| #if defined(OS_ANDROID)
|
| #include "base/global_descriptors_posix.h"
|
| #include "content/shell/android/shell_descriptors.h"
|
|
|