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

Unified Diff: base/sys_info_posix.cc

Issue 1538743002: Switch to standard integer types in base/. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: DEPS roll too 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 | « base/sys_info_openbsd.cc ('k') | base/sys_info_unittest.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: base/sys_info_posix.cc
diff --git a/base/sys_info_posix.cc b/base/sys_info_posix.cc
index 407134da7f2b9a5b32ceeca3687ce5fc2d11beef..85ae039118986d211ea3964e38f271c4beb3a026 100644
--- a/base/sys_info_posix.cc
+++ b/base/sys_info_posix.cc
@@ -5,6 +5,8 @@
#include "base/sys_info.h"
#include <errno.h>
+#include <stddef.h>
+#include <stdint.h>
#include <string.h>
#include <sys/param.h>
#include <sys/resource.h>
@@ -17,6 +19,7 @@
#include "base/strings/utf_string_conversions.h"
#include "base/sys_info_internal.h"
#include "base/threading/thread_restrictions.h"
+#include "build/build_config.h"
#if defined(OS_ANDROID)
#include <sys/vfs.h>
« no previous file with comments | « base/sys_info_openbsd.cc ('k') | base/sys_info_unittest.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698