diff options
author | dcheng <dcheng@chromium.org> | 2014-10-21 04:55:49 -0700 |
---|---|---|
committer | Commit bot <commit-bot@chromium.org> | 2014-10-21 11:56:04 +0000 |
commit | e59c1bb95b7f2f381d6a0c38c6f6f1c9a89c4ed4 (patch) | |
tree | 705b50a14d658317d5a3d0dc262cf5816065c5dc /chrome/app/chrome_crash_reporter_client.h | |
parent | 1ca8a7c75b0eb927301d4168722637b7235c41a6 (diff) | |
download | chromium_src-e59c1bb95b7f2f381d6a0c38c6f6f1c9a89c4ed4.zip chromium_src-e59c1bb95b7f2f381d6a0c38c6f6f1c9a89c4ed4.tar.gz chromium_src-e59c1bb95b7f2f381d6a0c38c6f6f1c9a89c4ed4.tar.bz2 |
Standardize usage of virtual/override/final in chrome/
This patch was automatically generated by applying clang fixit hints
generated by the plugin to the source tree.
BUG=417463
TBR=thestig@chromium.org
Review URL: https://codereview.chromium.org/653773004
Cr-Commit-Position: refs/heads/master@{#300465}
Diffstat (limited to 'chrome/app/chrome_crash_reporter_client.h')
-rw-r--r-- | chrome/app/chrome_crash_reporter_client.h | 19 |
1 files changed, 9 insertions, 10 deletions
diff --git a/chrome/app/chrome_crash_reporter_client.h b/chrome/app/chrome_crash_reporter_client.h index ddd426b..9ca2818 100644 --- a/chrome/app/chrome_crash_reporter_client.h +++ b/chrome/app/chrome_crash_reporter_client.h @@ -14,10 +14,10 @@ namespace chrome { class ChromeCrashReporterClient : public crash_reporter::CrashReporterClient { public: ChromeCrashReporterClient(); - virtual ~ChromeCrashReporterClient(); + ~ChromeCrashReporterClient() override; // crash_reporter::CrashReporterClient implementation. - virtual void SetCrashReporterClientIdFromGUID( + void SetCrashReporterClientIdFromGUID( const std::string& client_guid) override; #if defined(OS_WIN) virtual bool GetAlternativeCrashDumpLocation(base::FilePath* crash_dir) @@ -45,16 +45,16 @@ class ChromeCrashReporterClient : public crash_reporter::CrashReporterClient { virtual base::FilePath GetReporterLogFilename() override; #endif - virtual bool GetCrashDumpLocation(base::FilePath* crash_dir) override; + bool GetCrashDumpLocation(base::FilePath* crash_dir) override; - virtual size_t RegisterCrashKeys() override; + size_t RegisterCrashKeys() override; - virtual bool IsRunningUnattended() override; + bool IsRunningUnattended() override; - virtual bool GetCollectStatsConsent() override; + bool GetCollectStatsConsent() override; #if defined(OS_WIN) || defined(OS_MACOSX) - virtual bool ReportingIsEnforcedByPolicy(bool* breakpad_enabled) override; + bool ReportingIsEnforcedByPolicy(bool* breakpad_enabled) override; #endif #if defined(OS_ANDROID) @@ -62,11 +62,10 @@ class ChromeCrashReporterClient : public crash_reporter::CrashReporterClient { #endif #if defined(OS_MACOSX) - virtual void InstallAdditionalFilters(BreakpadRef breakpad) override; + void InstallAdditionalFilters(BreakpadRef breakpad) override; #endif - virtual bool EnableBreakpadForProcess( - const std::string& process_type) override; + bool EnableBreakpadForProcess(const std::string& process_type) override; private: DISALLOW_COPY_AND_ASSIGN(ChromeCrashReporterClient); |