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

Unified Diff: third_party/crashpad/crashpad/tools/mac/exception_port_tool.cc

Issue 1550683003: Switch to standard integer types in third_party/crashpad/. (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
Index: third_party/crashpad/crashpad/tools/mac/exception_port_tool.cc
diff --git a/third_party/crashpad/crashpad/tools/mac/exception_port_tool.cc b/third_party/crashpad/crashpad/tools/mac/exception_port_tool.cc
index b873e68b897611f3efeec3c82cb0970304fc67ba..1160381416ef1050b54486a34c18c4c6c1a7f215 100644
--- a/third_party/crashpad/crashpad/tools/mac/exception_port_tool.cc
+++ b/third_party/crashpad/crashpad/tools/mac/exception_port_tool.cc
@@ -16,6 +16,7 @@
#include <getopt.h>
#include <libgen.h>
#include <mach/mach.h>
+#include <stddef.h>
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
@@ -24,9 +25,9 @@
#include <string>
#include <vector>
-#include "base/basictypes.h"
#include "base/mac/mach_logging.h"
#include "base/mac/scoped_mach_port.h"
+#include "base/macros.h"
#include "base/strings/stringprintf.h"
#include "tools/tool_support.h"
#include "util/mach/exception_ports.h"

Powered by Google App Engine
This is Rietveld 408576698