diff options
author | tfarina <tfarina@chromium.org> | 2015-09-04 11:47:57 -0700 |
---|---|---|
committer | Commit bot <commit-bot@chromium.org> | 2015-09-04 18:48:36 +0000 |
commit | 10a5c06e17cca35135ee29556c2c139393f42c43 (patch) | |
tree | b27c8174d94724329b622fcf4978d9bfab615571 /ipc/ipc_sync_message.h | |
parent | 28bf86ee01379564978c4392bb7f4adc03d3b41a (diff) | |
download | chromium_src-10a5c06e17cca35135ee29556c2c139393f42c43.zip chromium_src-10a5c06e17cca35135ee29556c2c139393f42c43.tar.gz chromium_src-10a5c06e17cca35135ee29556c2c139393f42c43.tar.bz2 |
ipc: Convert int types from basictypes.h to the ones from stdint.h
Now that the supported toolchain has stdint.h, use the integer types
from this standard header file.
BUG=138542
TEST=ipc_tests
R=tsepez@chromium.org
TBR=sadrul@chromium.org # for ui/
Review URL: https://codereview.chromium.org/1322253003
Cr-Commit-Position: refs/heads/master@{#347457}
Diffstat (limited to 'ipc/ipc_sync_message.h')
-rw-r--r-- | ipc/ipc_sync_message.h | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/ipc/ipc_sync_message.h b/ipc/ipc_sync_message.h index 44d0f4f..70d6f4b 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; |