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

Unified Diff: util/win/process_structs.h

Issue 1355503005: win: Make reading CrashpadInfo work across bitness (Closed) Base URL: https://chromium.googlesource.com/crashpad/crashpad@master
Patch Set: Created 5 years, 3 months 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
« client/crashpad_info.h ('K') | « test/win/child_launcher.cc ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: util/win/process_structs.h
diff --git a/util/win/process_structs.h b/util/win/process_structs.h
index 79f6515259c4bb13c29564749bd329e2f3bfcf6e..d6080156ad102852203fd64cb2fe4b3e9f8c615f 100644
--- a/util/win/process_structs.h
+++ b/util/win/process_structs.h
@@ -25,12 +25,14 @@ namespace internal {
struct Traits32 {
using Pad = DWORD;
using UnsignedIntegral = DWORD;
+ using Byte = BYTE;
using Pointer = DWORD;
};
struct Traits64 {
using Pad = DWORD64;
using UnsignedIntegral = DWORD64;
+ using Byte = BYTE;
using Pointer = DWORD64;
};
« client/crashpad_info.h ('K') | « test/win/child_launcher.cc ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698