Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(219)

Unified Diff: ipc/message_filter.h

Issue 1322253003: ipc: Convert int types from basictypes.h to the ones from stdint.h (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 5 years, 3 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
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();
« ipc/ipc_test_sink.h ('K') | « ipc/ipc_test_sink.cc ('k') | ipc/message_filter.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698