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..3611d0d6aee33477984e6185687547b3d866e567 100644 |
| --- a/chrome/app/breakpad_linux.h |
| +++ b/chrome/app/breakpad_linux.h |
| @@ -8,6 +8,11 @@ |
| #include "base/basictypes.h" |
| extern void InitCrashReporter(); |
| +#if defined(OS_ANDROID) |
| +extern void InitNonBrowserCrashReporter(int minidump_fd); |
|
Lei Zhang
2012/10/19 23:22:34
Rename to InitNonBrowserCrashReporterForAndroid to
Jay Civelli
2012/10/22 22:09:48
Done.
|
| +#else |
| +extern void InitNonBrowserCrashReporter(); |
|
Lei Zhang
2012/10/19 23:22:34
Not needed - Linux/CrOS does not call this.
Jay Civelli
2012/10/22 22:09:48
Done.
|
| +#endif |
| bool IsCrashReporterEnabled(); |
| static const size_t kMaxActiveURLSize = 1024; |
| @@ -18,6 +23,7 @@ static const size_t kMaxAsanReportSize = 1 << 16; |
| #endif |
| struct BreakpadInfo { |
| + int fd; // File descriptor to the Breakpad dump data. |
| const char* filename; // Path to the Breakpad dump data. |
| #if defined(ADDRESS_SANITIZER) |
| const char* log_filename; // Path to the ASan log file. |