Chromium Code Reviews| Index: ipc/ipc_sync_message.cc |
| diff --git a/ipc/ipc_sync_message.cc b/ipc/ipc_sync_message.cc |
| index 6b59e11b49fe7cb8bf4711e962c45e9615d59240..39bf34abbc22996edf75e05257477aa8f9efc5bd 100644 |
| --- a/ipc/ipc_sync_message.cc |
| +++ b/ipc/ipc_sync_message.cc |
| @@ -2,18 +2,16 @@ |
| // Use of this source code is governed by a BSD-style license that can be |
| // found in the LICENSE file. |
| +#include "ipc/ipc_sync_message.h" |
| + |
| #include "build/build_config.h" |
|
Tom Sepez
2015/09/03 19:53:09
nit: this needs to move down and be alphabetized.
tfarina
2015/09/04 14:01:14
Done.
|
| -#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" |
| namespace { |
| @@ -36,15 +34,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); |