Index: client/crashpad_info.h |
diff --git a/client/crashpad_info.h b/client/crashpad_info.h |
index d9d239c442c4027bd5f5cb5bf657d908e93d4100..96b22549a77db119a2031c06a224326439161ad6 100644 |
--- a/client/crashpad_info.h |
+++ b/client/crashpad_info.h |
@@ -98,18 +98,6 @@ struct CrashpadInfo { |
system_crash_reporter_forwarding_ = system_crash_reporter_forwarding; |
} |
-#if defined(OS_WIN) |
- //! \brief Save the crashing thread ID for the crash handler. |
- void set_thread_id(DWORD thread_id) { thread_id_ = thread_id; } |
- DWORD thread_id() const { return thread_id_; } |
- |
- //! \brief Save an `EXCEPTION_POINTERS` record for the crash handler. |
- void set_exception_pointers(EXCEPTION_POINTERS* exception_pointers) { |
- exception_pointers_ = exception_pointers; |
- } |
- EXCEPTION_POINTERS* exception_pointers() const { return exception_pointers_; } |
-#endif // OS_WIN |
- |
enum : uint32_t { |
kSignature = 'CPad', |
}; |
@@ -133,11 +121,6 @@ struct CrashpadInfo { |
uint16_t padding_0_; |
SimpleStringDictionary* simple_annotations_; // weak |
-#if defined(OS_WIN) |
- EXCEPTION_POINTERS* exception_pointers_; |
- DWORD thread_id_; |
-#endif // OS_WIN |
- |
#if defined(__clang__) |
#pragma clang diagnostic pop |
#endif |