Index: qtwebengine-chromium/chromium/third_party/breakpad/breakpad/src/client/linux/dump_writer_common/thread_info.h =================================================================== --- qtwebengine-chromium.orig/chromium/third_party/breakpad/breakpad/src/client/linux/dump_writer_common/thread_info.h +++ qtwebengine-chromium/chromium/third_party/breakpad/breakpad/src/client/linux/dump_writer_common/thread_info.h @@ -32,6 +32,9 @@ #include #include +#if defined(__aarch64__) +#include +#endif #include "client/linux/dump_writer_common/raw_context_cpu.h" #include "common/memory_allocator.h" @@ -65,9 +68,9 @@ struct ThreadInfo { struct user_regs regs; struct user_fpregs fpregs; #elif defined(__aarch64__) - // Use the structures defined in - struct user_regs_struct regs; - struct user_fpsimd_struct fpregs; + // Use the structures defined in + struct user_pt_regs regs; + struct user_fpsimd_state fpregs; #elif defined(__mips__) // Use the structure defined in . mcontext_t mcontext;