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

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

Issue 637183002: Replace FINAL and OVERRIDE with their C++11 counterparts in content (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Rebased the patch 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/test/browser_test_utils.cc ('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 3be19a71875850f8221bd6cb5f554f6f02659d3f..c68f63f2915056a75bc35adaf59301cf3c272205 100644
--- a/content/shell/app/shell_crash_reporter_client.h
+++ b/content/shell/app/shell_crash_reporter_client.h
@@ -22,29 +22,29 @@ class ShellCrashReporterClient : public crash_reporter::CrashReporterClient {
base::string16* product_name,
base::string16* version,
base::string16* special_build,
- base::string16* channel_name) OVERRIDE;
+ base::string16* channel_name) override;
#endif
#if defined(OS_POSIX) && !defined(OS_MACOSX) && !defined(OS_IOS)
// Returns a textual description of the product type and version to include
// in the crash report.
virtual void GetProductNameAndVersion(const char** product_name,
- const char** version) OVERRIDE;
+ const char** version) override;
- virtual base::FilePath GetReporterLogFilename() OVERRIDE;
+ virtual base::FilePath GetReporterLogFilename() override;
#endif
// The location where minidump files should be written. Returns true if
// |crash_dir| was set.
- virtual bool GetCrashDumpLocation(base::FilePath* crash_dir) OVERRIDE;
+ virtual 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;
+ virtual int GetAndroidMinidumpDescriptor() override;
#endif
virtual bool EnableBreakpadForProcess(
- const std::string& process_type) OVERRIDE;
+ const std::string& process_type) override;
private:
DISALLOW_COPY_AND_ASSIGN(ShellCrashReporterClient);
« no previous file with comments | « content/public/test/browser_test_utils.cc ('k') | content/shell/app/shell_main_delegate.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698