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

Unified Diff: ipc/ipc_channel_nacl.cc

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_nacl.cc
diff --git a/ipc/ipc_channel_nacl.cc b/ipc/ipc_channel_nacl.cc
index 2e5f8b32fcd05bb2f87d0939f4c46c999bb295a1..2c63b81d429890408084a2388e48d4c55862ea0e 100644
--- a/ipc/ipc_channel_nacl.cc
+++ b/ipc/ipc_channel_nacl.cc
@@ -6,6 +6,7 @@
#include <errno.h>
#include <stddef.h>
+#include <stdint.h>
#include <sys/types.h>
#include <algorithm>
@@ -358,7 +359,7 @@ bool ChannelNacl::ShouldDispatchInputMessage(Message* msg) {
}
bool ChannelNacl::GetNonBrokeredAttachments(Message* msg) {
- uint16 header_fds = msg->header()->num_fds;
+ uint16_t header_fds = msg->header()->num_fds;
CHECK(header_fds == input_fds_.size());
if (header_fds == 0)
return true; // Nothing to do.
« no previous file with comments | « ipc/ipc_channel.cc ('k') | ipc/ipc_channel_posix.cc » ('j') | ipc/ipc_channel_win.h » ('J')

Powered by Google App Engine
This is Rietveld 408576698