Index: ipc/ipc_channel_win.h |
diff --git a/ipc/ipc_channel_win.h b/ipc/ipc_channel_win.h |
index d90529718204f79e99ff6305cfea0a81e723206d..f9460fdc0935e87212bd3e4a316b2b32b130318c 100644 |
--- a/ipc/ipc_channel_win.h |
+++ b/ipc/ipc_channel_win.h |
@@ -7,6 +7,7 @@ |
#include "ipc/ipc_channel.h" |
+#include <stdint.h> |
#include <queue> |
Tom Sepez
2015/09/03 19:53:09
nit: blank line between c and c++ headers.
tfarina
2015/09/04 14:01:14
Done.
|
#include <string> |
@@ -56,7 +57,7 @@ class ChannelWin : public Channel, |
bool IsAttachmentBrokerEndpoint() override; |
static const base::string16 PipeName(const std::string& channel_id, |
- int32* secret); |
+ int32_t* secret); |
bool CreatePipe(const IPC::ChannelHandle &channel_handle, Mode mode); |
bool ProcessConnection(); |
@@ -121,13 +122,13 @@ class ChannelWin : public Channel, |
bool validate_client_; |
// Tracks the lifetime of this object, for debugging purposes. |
- uint32 debug_flags_; |
+ uint32_t debug_flags_; |
// This is a unique per-channel value used to authenticate the client end of |
// a connection. If the value is non-zero, the client passes it in the hello |
// and the host validates. (We don't send the zero value fto preserve IPC |
// compatability with existing clients that don't validate the channel.) |
- int32 client_secret_; |
+ int32_t client_secret_; |
scoped_ptr<base::ThreadChecker> thread_check_; |