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

Unified Diff: chrome/app/chrome_crash_reporter_client.h

Issue 1100223002: Update {virtual,override} to follow C++11 style in chrome. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Rebase Created 5 years, 8 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 | « no previous file | chrome/app/delay_load_hook_unittest_win.cc » ('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 667f22e62ecdceedd344665372a547beeeebf29a..ebc1dd9918377b81e8b16260ada6a48aa2c067a1 100644
--- a/chrome/app/chrome_crash_reporter_client.h
+++ b/chrome/app/chrome_crash_reporter_client.h
@@ -27,25 +27,24 @@ class ChromeCrashReporterClient : public crash_reporter::CrashReporterClient {
const std::string& client_guid) override;
#endif
#if defined(OS_WIN)
- virtual bool GetAlternativeCrashDumpLocation(base::FilePath* crash_dir)
- 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;
- 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;
- virtual void RecordCrashDumpAttemptResult(bool is_real_crash,
- bool succeeded) override;
+ bool GetAlternativeCrashDumpLocation(base::FilePath* crash_dir) override;
+ void GetProductNameAndVersion(const base::FilePath& exe_path,
+ base::string16* product_name,
+ base::string16* version,
+ base::string16* special_build,
+ base::string16* channel_name) override;
+ bool ShouldShowRestartDialog(base::string16* title,
+ base::string16* message,
+ bool* is_rtl_locale) override;
+ bool AboutToRestart() override;
+ bool GetDeferredUploadsSupported(bool is_per_user_install) override;
+ bool GetIsPerUserInstall(const base::FilePath& exe_path) override;
+ bool GetShouldDumpLargerDumps(bool is_per_user_install) override;
+ int GetResultCodeRespawnFailed() override;
+ void InitBrowserCrashDumpsRegKey() override;
+ void RecordCrashDumpAttempt(bool is_real_crash) override;
+ void RecordCrashDumpAttemptResult(bool is_real_crash,
+ bool succeeded) override;
#endif
#if defined(OS_POSIX) && !defined(OS_MACOSX) && !defined(OS_IOS)
« no previous file with comments | « no previous file | chrome/app/delay_load_hook_unittest_win.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698