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

Unified Diff: ipc/ipc_listener.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/ipc_listener.h
diff --git a/ipc/ipc_listener.h b/ipc/ipc_listener.h
index 733bc46d7c8fe98a658d76a47b1cc10190dbf93d..02770862327d10701c18eec4a4cd8ba51142cc46 100644
--- a/ipc/ipc_listener.h
+++ b/ipc/ipc_listener.h
@@ -5,7 +5,8 @@
#ifndef IPC_IPC_LISTENER_H_
#define IPC_IPC_LISTENER_H_
-#include "base/basictypes.h"
+#include <stdint.h>
+
#include "build/build_config.h"
#include "ipc/ipc_export.h"
@@ -22,7 +23,7 @@ class IPC_EXPORT Listener {
// Called when the 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 an error is detected that causes the channel to close.
// This method is not called when a channel is closed normally.

Powered by Google App Engine
This is Rietveld 408576698