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

Unified Diff: chrome/app/chrome_crash_reporter_client.h

Issue 644903002: Replacing the OVERRIDE with override and in chrome (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Extrafile added 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 | « chrome/app/android/chrome_main_delegate_android.h ('k') | chrome/app/chrome_main_delegate.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: chrome/app/chrome_crash_reporter_client.h
diff --git a/chrome/app/chrome_crash_reporter_client.h b/chrome/app/chrome_crash_reporter_client.h
index 24a475aab14d9c15e98b6d23e9223a3e1182dc08..ddd426b8c29903d2970024bc0f5485385c43bfaa 100644
--- a/chrome/app/chrome_crash_reporter_client.h
+++ b/chrome/app/chrome_crash_reporter_client.h
@@ -18,55 +18,55 @@ class ChromeCrashReporterClient : public crash_reporter::CrashReporterClient {
// crash_reporter::CrashReporterClient implementation.
virtual void SetCrashReporterClientIdFromGUID(
- const std::string& client_guid) OVERRIDE;
+ const std::string& client_guid) override;
#if defined(OS_WIN)
virtual bool GetAlternativeCrashDumpLocation(base::FilePath* crash_dir)
- OVERRIDE;
+ override;
virtual void GetProductNameAndVersion(const base::FilePath& exe_path,
base::string16* product_name,
base::string16* version,
base::string16* special_build,
- base::string16* channel_name) OVERRIDE;
+ base::string16* channel_name) override;
virtual bool ShouldShowRestartDialog(base::string16* title,
base::string16* message,
- bool* is_rtl_locale) OVERRIDE;
- virtual bool AboutToRestart() OVERRIDE;
- virtual bool GetDeferredUploadsSupported(bool is_per_user_install) OVERRIDE;
- virtual bool GetIsPerUserInstall(const base::FilePath& exe_path) OVERRIDE;
- virtual bool GetShouldDumpLargerDumps(bool is_per_user_install) OVERRIDE;
- virtual int GetResultCodeRespawnFailed() OVERRIDE;
- virtual void InitBrowserCrashDumpsRegKey() OVERRIDE;
- virtual void RecordCrashDumpAttempt(bool is_real_crash) OVERRIDE;
+ bool* is_rtl_locale) override;
+ virtual bool AboutToRestart() override;
+ virtual bool GetDeferredUploadsSupported(bool is_per_user_install) override;
+ virtual bool GetIsPerUserInstall(const base::FilePath& exe_path) override;
+ virtual bool GetShouldDumpLargerDumps(bool is_per_user_install) override;
+ virtual int GetResultCodeRespawnFailed() override;
+ virtual void InitBrowserCrashDumpsRegKey() override;
+ virtual void RecordCrashDumpAttempt(bool is_real_crash) override;
#endif
#if defined(OS_POSIX) && !defined(OS_MACOSX) && !defined(OS_IOS)
virtual void GetProductNameAndVersion(const char** product_name,
- const char** version) OVERRIDE;
- virtual base::FilePath GetReporterLogFilename() OVERRIDE;
+ const char** version) override;
+ virtual base::FilePath GetReporterLogFilename() override;
#endif
- virtual bool GetCrashDumpLocation(base::FilePath* crash_dir) OVERRIDE;
+ virtual bool GetCrashDumpLocation(base::FilePath* crash_dir) override;
- virtual size_t RegisterCrashKeys() OVERRIDE;
+ virtual size_t RegisterCrashKeys() override;
- virtual bool IsRunningUnattended() OVERRIDE;
+ virtual bool IsRunningUnattended() override;
- virtual bool GetCollectStatsConsent() OVERRIDE;
+ virtual bool GetCollectStatsConsent() override;
#if defined(OS_WIN) || defined(OS_MACOSX)
- virtual bool ReportingIsEnforcedByPolicy(bool* breakpad_enabled) OVERRIDE;
+ virtual bool ReportingIsEnforcedByPolicy(bool* breakpad_enabled) override;
#endif
#if defined(OS_ANDROID)
- virtual int GetAndroidMinidumpDescriptor() OVERRIDE;
+ virtual int GetAndroidMinidumpDescriptor() override;
#endif
#if defined(OS_MACOSX)
- virtual void InstallAdditionalFilters(BreakpadRef breakpad) OVERRIDE;
+ virtual void InstallAdditionalFilters(BreakpadRef breakpad) override;
#endif
virtual bool EnableBreakpadForProcess(
- const std::string& process_type) OVERRIDE;
+ const std::string& process_type) override;
private:
DISALLOW_COPY_AND_ASSIGN(ChromeCrashReporterClient);
« no previous file with comments | « chrome/app/android/chrome_main_delegate_android.h ('k') | chrome/app/chrome_main_delegate.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698