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

Unified Diff: chrome/browser/component_updater/recovery_component_installer.cc

Issue 663323002: Standardize usage of virtual/override/final in chrome/browser/component_updater/ (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: formatted 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
Index: chrome/browser/component_updater/recovery_component_installer.cc
diff --git a/chrome/browser/component_updater/recovery_component_installer.cc b/chrome/browser/component_updater/recovery_component_installer.cc
index d52e84c77bc9f04b330487da2c0cd0a2e8c9d86a..f6b5727a1331714c4db37d52a88d90631f33e55d 100644
--- a/chrome/browser/component_updater/recovery_component_installer.cc
+++ b/chrome/browser/component_updater/recovery_component_installer.cc
@@ -54,15 +54,15 @@ class RecoveryComponentInstaller : public ComponentInstaller {
explicit RecoveryComponentInstaller(const Version& version,
PrefService* prefs);
- virtual ~RecoveryComponentInstaller() {}
+ ~RecoveryComponentInstaller() override {}
- virtual void OnUpdateError(int error) override;
+ void OnUpdateError(int error) override;
- virtual bool Install(const base::DictionaryValue& manifest,
- const base::FilePath& unpack_path) override;
+ bool Install(const base::DictionaryValue& manifest,
+ const base::FilePath& unpack_path) override;
- virtual bool GetInstalledFile(const std::string& file,
- base::FilePath* installed_file) override;
+ bool GetInstalledFile(const std::string& file,
+ base::FilePath* installed_file) override;
private:
Version current_version_;

Powered by Google App Engine
This is Rietveld 408576698