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

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

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/chrome_component_updater_configurator.cc
diff --git a/chrome/browser/component_updater/chrome_component_updater_configurator.cc b/chrome/browser/component_updater/chrome_component_updater_configurator.cc
index f2f6daeb9e13658e254bbe9146a343b71784cca8..742f2ba22adefddb61285a0d7922badc58460ae7 100644
--- a/chrome/browser/component_updater/chrome_component_updater_configurator.cc
+++ b/chrome/browser/component_updater/chrome_component_updater_configurator.cc
@@ -114,29 +114,29 @@ class ChromeConfigurator : public Configurator {
virtual ~ChromeConfigurator() {}
- virtual int InitialDelay() const OVERRIDE;
- virtual int NextCheckDelay() OVERRIDE;
- virtual int StepDelay() const OVERRIDE;
- virtual int StepDelayMedium() OVERRIDE;
- virtual int MinimumReCheckWait() const OVERRIDE;
- virtual int OnDemandDelay() const OVERRIDE;
- virtual std::vector<GURL> UpdateUrl() const OVERRIDE;
- virtual std::vector<GURL> PingUrl() const OVERRIDE;
- virtual base::Version GetBrowserVersion() const OVERRIDE;
- virtual std::string GetChannel() const OVERRIDE;
- virtual std::string GetLang() const OVERRIDE;
- virtual std::string GetOSLongName() const OVERRIDE;
- virtual std::string ExtraRequestParams() const OVERRIDE;
- virtual size_t UrlSizeLimit() const OVERRIDE;
- virtual net::URLRequestContextGetter* RequestContext() const OVERRIDE;
+ virtual int InitialDelay() const override;
+ virtual int NextCheckDelay() override;
+ virtual int StepDelay() const override;
+ virtual int StepDelayMedium() override;
+ virtual int MinimumReCheckWait() const override;
+ virtual int OnDemandDelay() const override;
+ virtual std::vector<GURL> UpdateUrl() const override;
+ virtual std::vector<GURL> PingUrl() const override;
+ virtual base::Version GetBrowserVersion() const override;
+ virtual std::string GetChannel() const override;
+ virtual std::string GetLang() const override;
+ virtual std::string GetOSLongName() const override;
+ virtual std::string ExtraRequestParams() const override;
+ virtual size_t UrlSizeLimit() const override;
+ virtual net::URLRequestContextGetter* RequestContext() const override;
virtual scoped_refptr<OutOfProcessPatcher> CreateOutOfProcessPatcher()
- const OVERRIDE;
- virtual bool DeltasEnabled() const OVERRIDE;
- virtual bool UseBackgroundDownloader() const OVERRIDE;
+ const override;
+ virtual bool DeltasEnabled() const override;
+ virtual bool UseBackgroundDownloader() const override;
virtual scoped_refptr<base::SequencedTaskRunner> GetSequencedTaskRunner()
- const OVERRIDE;
+ const override;
virtual scoped_refptr<base::SingleThreadTaskRunner>
- GetSingleThreadTaskRunner() const OVERRIDE;
+ GetSingleThreadTaskRunner() const override;
private:
net::URLRequestContextGetter* url_request_getter_;
« no previous file with comments | « chrome/browser/command_updater_unittest.cc ('k') | chrome/browser/component_updater/cld_component_installer.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698