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

Unified Diff: ipc/ipc_channel_win.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_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_;
« no previous file with comments | « ipc/ipc_channel_unittest.cc ('k') | ipc/ipc_channel_win.cc » ('j') | ipc/ipc_fuzzing_tests.cc » ('J')

Powered by Google App Engine
This is Rietveld 408576698