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

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: REBASE 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
« no previous file with comments | « ipc/ipc_test_sink.cc ('k') | ipc/message_filter.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: ipc/message_filter.h
diff --git a/ipc/message_filter.h b/ipc/message_filter.h
index c9ba4e84ac23a0c5cb9a0aa8da617262d8d2f520..f70ee069fc28921e26e07496850fa8ebfac55b9d 100644
--- a/ipc/message_filter.h
+++ b/ipc/message_filter.h
@@ -5,6 +5,8 @@
#ifndef IPC_MESSAGE_FILTER_H_
#define IPC_MESSAGE_FILTER_H_
+#include <stdint.h>
+
#include <vector>
#include "base/memory/ref_counted.h"
@@ -34,7 +36,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 +55,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();
« no previous file with comments | « 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