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

Unified Diff: third_party/crashpad/crashpad/util/win/process_info.h

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/process_info.h
diff --git a/third_party/crashpad/crashpad/util/win/process_info.h b/third_party/crashpad/crashpad/util/win/process_info.h
index 036244512fbbb165f17b254fa51524e3aafe53a8..ec53513e4a309ec57bb8318860758752289ebca6 100644
--- a/third_party/crashpad/crashpad/util/win/process_info.h
+++ b/third_party/crashpad/crashpad/util/win/process_info.h
@@ -15,13 +15,14 @@
#ifndef CRASHPAD_UTIL_WIN_PROCESS_INFO_H_
#define CRASHPAD_UTIL_WIN_PROCESS_INFO_H_
-#include <sys/types.h>
#include <windows.h>
+#include <stdint.h>
+#include <sys/types.h>
#include <string>
#include <vector>
-#include "base/basictypes.h"
+#include "base/macros.h"
#include "util/misc/initialization_state_dcheck.h"
#include "util/numeric/checked_range.h"
#include "util/stdlib/aligned_allocator.h"

Powered by Google App Engine
This is Rietveld 408576698