| Index: ipc/ipc_sync_message.h
|
| diff --git a/ipc/ipc_sync_message.h b/ipc/ipc_sync_message.h
|
| index 44d0f4f31ae4c9a0ef38b26f337b20fb194653da..70d6f4b23866900ab93bbdab5bd11778dcd30160 100644
|
| --- a/ipc/ipc_sync_message.h
|
| +++ b/ipc/ipc_sync_message.h
|
| @@ -5,6 +5,7 @@
|
| #ifndef IPC_IPC_SYNC_MESSAGE_H_
|
| #define IPC_IPC_SYNC_MESSAGE_H_
|
|
|
| +#include <stdint.h>
|
| #if defined(OS_WIN)
|
| #include <windows.h>
|
| #endif
|
| @@ -23,7 +24,9 @@ class MessageReplyDeserializer;
|
|
|
| class IPC_EXPORT SyncMessage : public Message {
|
| public:
|
| - SyncMessage(int32 routing_id, uint32 type, PriorityValue priority,
|
| + SyncMessage(int32_t routing_id,
|
| + uint32_t type,
|
| + PriorityValue priority,
|
| MessageReplyDeserializer* deserializer);
|
| ~SyncMessage() override;
|
|
|
|
|