Index: chrome/app/breakpad_linux.h |
=================================================================== |
--- chrome/app/breakpad_linux.h (revision 152746) |
+++ chrome/app/breakpad_linux.h (working copy) |
@@ -13,9 +13,17 @@ |
static const size_t kMaxActiveURLSize = 1024; |
static const size_t kGuidSize = 32; // 128 bits = 32 chars in hex. |
static const size_t kDistroSize = 128; |
+#if defined(ADDRESS_SANITIZER) |
+static const size_t kMaxAsanReportSize = 1 << 16; |
+#endif |
struct BreakpadInfo { |
const char* filename; // Path to the Breakpad dump data. |
+#if defined(ADDRESS_SANITIZER) |
+ const char* log_filename; // Path to the ASan log file. |
+ const char* asan_report_str; // ASan report. |
+ unsigned asan_report_length; // Length of |asan_report_length|. |
+#endif |
const char* process_type; // Process type, e.g. "renderer". |
unsigned process_type_length; // Length of |process_type|. |
const char* crash_url; // Active URL in the crashing process. |