| Index: components/crash/app/breakpad_linux.cc
|
| diff --git a/components/crash/app/breakpad_linux.cc b/components/crash/app/breakpad_linux.cc
|
| index 2d7ff7cbb07ad867ff83f6fc75b6cfd7894fbfde..4fe127b940a617a95938be4f4dde462ec9484bf7 100644
|
| --- a/components/crash/app/breakpad_linux.cc
|
| +++ b/components/crash/app/breakpad_linux.cc
|
| @@ -757,10 +757,10 @@ class NonBrowserCrashHandler : public google_breakpad::CrashGenerationClient {
|
| kCrashDumpSignal)) {
|
| }
|
|
|
| - virtual ~NonBrowserCrashHandler() {}
|
| + ~NonBrowserCrashHandler() override {}
|
|
|
| - virtual bool RequestDump(const void* crash_context,
|
| - size_t crash_context_size) override {
|
| + bool RequestDump(const void* crash_context,
|
| + size_t crash_context_size) override {
|
| int fds[2] = { -1, -1 };
|
| if (sys_socketpair(AF_UNIX, SOCK_STREAM, 0, fds) < 0) {
|
| static const char msg[] = "Failed to create socket for crash dumping.\n";
|
|
|