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

Unified Diff: third_party/crashpad/crashpad/util/win/exception_handler_server.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/util/win/exception_handler_server.cc
diff --git a/third_party/crashpad/crashpad/util/win/exception_handler_server.cc b/third_party/crashpad/crashpad/util/win/exception_handler_server.cc
index 5559efbe0b816908a23f14f610b92b2bbc14dc7e..347dc50f9dff869bce7786f70a5cd2e3e098d367 100644
--- a/third_party/crashpad/crashpad/util/win/exception_handler_server.cc
+++ b/third_party/crashpad/crashpad/util/win/exception_handler_server.cc
@@ -15,11 +15,14 @@
#include "util/win/exception_handler_server.h"
#include <sddl.h>
+#include <stddef.h>
+#include <stdint.h>
#include <string.h>
#include <utility>
#include "base/logging.h"
+#include "base/macros.h"
#include "base/numerics/safe_conversions.h"
#include "base/rand_util.h"
#include "base/strings/stringprintf.h"

Powered by Google App Engine
This is Rietveld 408576698