| Index: components/crash/app/breakpad_linux.cc
|
| diff --git a/components/crash/app/breakpad_linux.cc b/components/crash/app/breakpad_linux.cc
|
| index e9e01f9a305d7ee8169ffae26a5c87ef09c3c2e0..76f1d589607532d49b8aebe9f5ad962f638b4577 100644
|
| --- a/components/crash/app/breakpad_linux.cc
|
| +++ b/components/crash/app/breakpad_linux.cc
|
| @@ -1082,12 +1082,18 @@ void HandleCrashReportId(const char* buf, size_t bytes_read,
|
| WriteNewline();
|
| if (!IsValidCrashReportId(buf, bytes_read, expected_len)) {
|
| #if defined(OS_CHROMEOS)
|
| - static const char msg[] = "Crash_reporter failed to process crash report";
|
| + static const char msg[] =
|
| + "System crash-reporter failed to process crash report.";
|
| #else
|
| static const char msg[] = "Failed to get crash dump id.";
|
| #endif
|
| WriteLog(msg, sizeof(msg) - 1);
|
| WriteNewline();
|
| +
|
| + static const char id_msg[] = "Report Id: ";
|
| + WriteLog(id_msg, sizeof(id_msg) - 1);
|
| + WriteLog(buf, bytes_read);
|
| + WriteNewline();
|
| return;
|
| }
|
|
|
|
|