| Index: ipc/ipc_sync_message.cc
|
| diff --git a/ipc/ipc_sync_message.cc b/ipc/ipc_sync_message.cc
|
| index 6b59e11b49fe7cb8bf4711e962c45e9615d59240..8a770b17a1f407382938562ffcee4210a3076e66 100644
|
| --- a/ipc/ipc_sync_message.cc
|
| +++ b/ipc/ipc_sync_message.cc
|
| @@ -2,18 +2,15 @@
|
| // Use of this source code is governed by a BSD-style license that can be
|
| // found in the LICENSE file.
|
|
|
| -#include "build/build_config.h"
|
| +#include "ipc/ipc_sync_message.h"
|
|
|
| -#if defined(OS_WIN)
|
| -#include <windows.h>
|
| -#endif
|
| #include <stack>
|
|
|
| #include "base/atomic_sequence_num.h"
|
| #include "base/lazy_instance.h"
|
| #include "base/logging.h"
|
| #include "base/synchronization/waitable_event.h"
|
| -#include "ipc/ipc_sync_message.h"
|
| +#include "build/build_config.h"
|
|
|
| namespace {
|
|
|
| @@ -36,15 +33,13 @@ namespace IPC {
|
|
|
| #define kSyncMessageHeaderSize 4
|
|
|
| -SyncMessage::SyncMessage(
|
| - int32 routing_id,
|
| - uint32 type,
|
| - PriorityValue priority,
|
| - MessageReplyDeserializer* deserializer)
|
| +SyncMessage::SyncMessage(int32_t routing_id,
|
| + uint32_t type,
|
| + PriorityValue priority,
|
| + MessageReplyDeserializer* deserializer)
|
| : Message(routing_id, type, priority),
|
| deserializer_(deserializer),
|
| - pump_messages_event_(NULL)
|
| - {
|
| + pump_messages_event_(NULL) {
|
| set_sync();
|
| set_unblock(true);
|
|
|
|
|