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

Unified Diff: sandbox/linux/syscall_broker/broker_client.cc

Issue 1538283002: Switch to standard integer types in sandbox/. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: macros Created 5 years 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 | « sandbox/linux/suid/sandbox.c ('k') | sandbox/linux/syscall_broker/broker_file_permission.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: sandbox/linux/syscall_broker/broker_client.cc
diff --git a/sandbox/linux/syscall_broker/broker_client.cc b/sandbox/linux/syscall_broker/broker_client.cc
index db8201ae3d88cc291434dbc6ab6e62a0895710fe..36c92cd0739de01388e7b578d8aa1ef1b0a8b428 100644
--- a/sandbox/linux/syscall_broker/broker_client.cc
+++ b/sandbox/linux/syscall_broker/broker_client.cc
@@ -6,15 +6,17 @@
#include <errno.h>
#include <fcntl.h>
-#include <sys/stat.h>
+#include <stddef.h>
+#include <stdint.h>
#include <sys/socket.h>
+#include <sys/stat.h>
#include <sys/types.h>
#include <utility>
-#include "build/build_config.h"
#include "base/logging.h"
#include "base/pickle.h"
#include "base/posix/unix_domain_socket_linux.h"
+#include "build/build_config.h"
#include "sandbox/linux/syscall_broker/broker_channel.h"
#include "sandbox/linux/syscall_broker/broker_common.h"
#include "sandbox/linux/syscall_broker/broker_policy.h"
« no previous file with comments | « sandbox/linux/suid/sandbox.c ('k') | sandbox/linux/syscall_broker/broker_file_permission.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698