Chromium Code Reviews| Index: chrome/app/breakpad_linux.h |
| diff --git a/chrome/app/breakpad_linux.h b/chrome/app/breakpad_linux.h |
| index 78196538947cb619d3a3947313cb6b609733d16f..a5a6d4e5586c8adc2f1e45e321e7fc559ee2f3ff 100644 |
| --- a/chrome/app/breakpad_linux.h |
| +++ b/chrome/app/breakpad_linux.h |
| @@ -8,6 +8,9 @@ |
| #include "base/basictypes.h" |
| extern void InitCrashReporter(); |
| +#if defined(OS_ANDROID) |
| +extern void InitNonBrowserCrashReporterForAndroid(int minidump_fd); |
| +#endif |
| bool IsCrashReporterEnabled(); |
| static const size_t kMaxActiveURLSize = 1024; |
| @@ -18,6 +21,7 @@ static const size_t kMaxAsanReportSize = 1 << 16; |
| #endif |
| struct BreakpadInfo { |
| + int fd; // File descriptor to the Breakpad dump data. |
|
Lei Zhang
2012/10/23 21:34:58
Can you add a comment to explain the relationship
Jay Civelli
2012/10/24 00:12:53
Done.
|
| const char* filename; // Path to the Breakpad dump data. |
| #if defined(ADDRESS_SANITIZER) |
| const char* log_filename; // Path to the ASan log file. |