| Index: chrome/service/service_ipc_server.cc
|
| diff --git a/chrome/service/service_ipc_server.cc b/chrome/service/service_ipc_server.cc
|
| index 872dc60f718e0295ea6d5f99969a71d5aab8a6fa..bcd3726080471a16f18a783504d2776ebecf2cd0 100644
|
| --- a/chrome/service/service_ipc_server.cc
|
| +++ b/chrome/service/service_ipc_server.cc
|
| @@ -22,7 +22,7 @@
|
| }
|
|
|
| bool ServiceIPCServer::Init() {
|
| -#if BUILDFLAG(IPC_MESSAGE_LOG_ENABLED)
|
| +#ifdef IPC_MESSAGE_LOG_ENABLED
|
| IPC::Logging::GetInstance()->SetIPCSender(this);
|
| #endif
|
| CreateChannel();
|
| @@ -39,7 +39,7 @@
|
| }
|
|
|
| ServiceIPCServer::~ServiceIPCServer() {
|
| -#if BUILDFLAG(IPC_MESSAGE_LOG_ENABLED)
|
| +#ifdef IPC_MESSAGE_LOG_ENABLED
|
| IPC::Logging::GetInstance()->SetIPCSender(NULL);
|
| #endif
|
| }
|
|
|