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

Unified Diff: components/crash/content/app/breakpad_linux.cc

Issue 1546143002: Switch to standard integer types in components/, part 1 of 4. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: 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 | « components/copresence/timed_map_unittest.cc ('k') | components/crash/content/app/breakpad_linux_impl.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: components/crash/content/app/breakpad_linux.cc
diff --git a/components/crash/content/app/breakpad_linux.cc b/components/crash/content/app/breakpad_linux.cc
index 62888ad9ff5fa9f6d88feb8e640bb66d886070a3..077007919c2bb2afde6b2a7196bd2052036df0c1 100644
--- a/components/crash/content/app/breakpad_linux.cc
+++ b/components/crash/content/app/breakpad_linux.cc
@@ -10,7 +10,10 @@
#include <fcntl.h>
#include <poll.h>
#include <signal.h>
+#include <stddef.h>
+#include <stdint.h>
#include <stdlib.h>
+#include <string.h>
#include <sys/socket.h>
#include <sys/time.h>
#include <sys/types.h>
@@ -29,6 +32,7 @@
#include "base/files/file_path.h"
#include "base/lazy_instance.h"
#include "base/linux_util.h"
+#include "base/macros.h"
#include "base/path_service.h"
#include "base/posix/eintr_wrapper.h"
#include "base/posix/global_descriptors.h"
« no previous file with comments | « components/copresence/timed_map_unittest.cc ('k') | components/crash/content/app/breakpad_linux_impl.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698