Index: ipc/message_filter.h |
diff --git a/ipc/message_filter.h b/ipc/message_filter.h |
index c9ba4e84ac23a0c5cb9a0aa8da617262d8d2f520..b53365d346d7c524a9a4049e40780f90733fbf1c 100644 |
--- a/ipc/message_filter.h |
+++ b/ipc/message_filter.h |
@@ -5,6 +5,7 @@ |
#ifndef IPC_MESSAGE_FILTER_H_ |
#define IPC_MESSAGE_FILTER_H_ |
+#include <stdint.h> |
#include <vector> |
Tom Sepez
2015/09/03 19:53:09
nit: ditto
tfarina
2015/09/04 14:01:14
Done.
|
#include "base/memory/ref_counted.h" |
@@ -34,7 +35,7 @@ class IPC_EXPORT MessageFilter |
// Called to inform the filter that the IPC channel is connected and we |
// have received the internal Hello message from the peer. |
- virtual void OnChannelConnected(int32 peer_pid); |
+ virtual void OnChannelConnected(int32_t peer_pid); |
// Called when there is an error on the channel, typically that the channel |
// has been closed. |
@@ -53,7 +54,7 @@ class IPC_EXPORT MessageFilter |
// if the resulting contents of |supported_message_classes| may be used to |
// selectively offer messages of a particular class to the filter. |
virtual bool GetSupportedMessageClasses( |
- std::vector<uint32>* supported_message_classes) const; |
+ std::vector<uint32_t>* supported_message_classes) const; |
protected: |
virtual ~MessageFilter(); |