| Index: chromecast/crash/cast_crash_reporter_client.h
|
| diff --git a/chromecast/crash/cast_crash_reporter_client.h b/chromecast/crash/cast_crash_reporter_client.h
|
| index 62c974d2f6ea8ab713c020b4c124dd77b57f6b7d..a0916a041ea6c2016bea07f35e5c305b50e98de9 100644
|
| --- a/chromecast/crash/cast_crash_reporter_client.h
|
| +++ b/chromecast/crash/cast_crash_reporter_client.h
|
| @@ -17,12 +17,12 @@ class CastCrashReporterClient : public crash_reporter::CrashReporterClient {
|
| static void InitCrashReporter(const std::string& process_type);
|
|
|
| CastCrashReporterClient();
|
| - virtual ~CastCrashReporterClient();
|
| + ~CastCrashReporterClient() override;
|
|
|
| // crash_reporter::CrashReporterClient implementation:
|
| - virtual bool EnableBreakpadForProcess(
|
| + bool EnableBreakpadForProcess(
|
| const std::string& process_type) override;
|
| - virtual bool HandleCrashDump(const char* crashdump_filename) override;
|
| + bool HandleCrashDump(const char* crashdump_filename) override;
|
|
|
| private:
|
| static char* GetProcessType();
|
|
|