Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(1130)

Unified Diff: content/shell/app/shell_crash_reporter_client.h

Issue 671663002: Standardize usage of virtual/override/final in content/ (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 6 years, 2 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « content/public/utility/utility_thread.h ('k') | content/shell/app/shell_main_delegate.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: content/shell/app/shell_crash_reporter_client.h
diff --git a/content/shell/app/shell_crash_reporter_client.h b/content/shell/app/shell_crash_reporter_client.h
index c68f63f2915056a75bc35adaf59301cf3c272205..fe53e7ddf1b5cbf08f16dec6aaf12b40ba2e9cca 100644
--- a/content/shell/app/shell_crash_reporter_client.h
+++ b/content/shell/app/shell_crash_reporter_client.h
@@ -13,7 +13,7 @@ namespace content {
class ShellCrashReporterClient : public crash_reporter::CrashReporterClient {
public:
ShellCrashReporterClient();
- virtual ~ShellCrashReporterClient();
+ ~ShellCrashReporterClient() override;
#if defined(OS_WIN)
// Returns a textual description of the product type and version to include
@@ -36,15 +36,14 @@ class ShellCrashReporterClient : public crash_reporter::CrashReporterClient {
// The location where minidump files should be written. Returns true if
// |crash_dir| was set.
- virtual bool GetCrashDumpLocation(base::FilePath* crash_dir) override;
+ bool GetCrashDumpLocation(base::FilePath* crash_dir) override;
#if defined(OS_ANDROID)
// Returns the descriptor key of the android minidump global descriptor.
virtual int GetAndroidMinidumpDescriptor() override;
#endif
- virtual bool EnableBreakpadForProcess(
- const std::string& process_type) override;
+ bool EnableBreakpadForProcess(const std::string& process_type) override;
private:
DISALLOW_COPY_AND_ASSIGN(ShellCrashReporterClient);
« no previous file with comments | « content/public/utility/utility_thread.h ('k') | content/shell/app/shell_main_delegate.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698