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

Unified Diff: chrome/browser/component_updater/cld_component_installer.h

Issue 625113002: replace OVERRIDE and FINAL with override and final in chrome/browser/[a-i]* (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: fix newly added OVERRIDEs 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/cld_component_installer.h
diff --git a/chrome/browser/component_updater/cld_component_installer.h b/chrome/browser/component_updater/cld_component_installer.h
index d3ac5fd6c98ee55a7b41f3a0696eb5f25b7f3039..0979923c4bb4441f0ce7e7770f86c4f2b2b88380 100644
--- a/chrome/browser/component_updater/cld_component_installer.h
+++ b/chrome/browser/component_updater/cld_component_installer.h
@@ -41,19 +41,19 @@ class CldComponentInstallerTraits : public ComponentInstallerTraits {
FRIEND_TEST_ALL_PREFIXES(CldComponentInstallerTest, VerifyInstallation);
// The following methods override ComponentInstallerTraits.
- virtual bool CanAutoUpdate() const OVERRIDE;
+ virtual bool CanAutoUpdate() const override;
virtual bool OnCustomInstall(const base::DictionaryValue& manifest,
- const base::FilePath& install_dir) OVERRIDE;
+ const base::FilePath& install_dir) override;
virtual bool VerifyInstallation(
const base::DictionaryValue& manifest,
- const base::FilePath& install_dir) const OVERRIDE;
+ const base::FilePath& install_dir) const override;
virtual void ComponentReady(
const base::Version& version,
const base::FilePath& path,
- scoped_ptr<base::DictionaryValue> manifest) OVERRIDE;
- virtual base::FilePath GetBaseDirectory() const OVERRIDE;
- virtual void GetHash(std::vector<uint8_t>* hash) const OVERRIDE;
- virtual std::string GetName() const OVERRIDE;
+ scoped_ptr<base::DictionaryValue> manifest) override;
+ virtual base::FilePath GetBaseDirectory() const override;
+ virtual void GetHash(std::vector<uint8_t>* hash) const override;
+ virtual std::string GetName() const override;
static base::FilePath GetInstalledPath(const base::FilePath& base);

Powered by Google App Engine
This is Rietveld 408576698