diff options
author | mostynb <mostynb@opera.com> | 2014-10-03 17:49:22 -0700 |
---|---|---|
committer | Commit bot <commit-bot@chromium.org> | 2014-10-04 00:49:43 +0000 |
commit | 205d625e83d765fd3923816c3e4b814ba3eabce2 (patch) | |
tree | e0ba481c3e6d2b7456e4b1af498c9292d3cd64cc /chrome/browser/ui/startup/obsolete_system_infobar_delegate.h | |
parent | ceb961140470e5e7a14e41b53ce244947b24a062 (diff) | |
download | chromium_src-205d625e83d765fd3923816c3e4b814ba3eabce2.zip chromium_src-205d625e83d765fd3923816c3e4b814ba3eabce2.tar.gz chromium_src-205d625e83d765fd3923816c3e4b814ba3eabce2.tar.bz2 |
replace OVERRIDE and FINAL with override and final in chrome/browser/ui/[a-s]*
BUG=417463
Review URL: https://codereview.chromium.org/627043002
Cr-Commit-Position: refs/heads/master@{#298136}
Diffstat (limited to 'chrome/browser/ui/startup/obsolete_system_infobar_delegate.h')
-rw-r--r-- | chrome/browser/ui/startup/obsolete_system_infobar_delegate.h | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/chrome/browser/ui/startup/obsolete_system_infobar_delegate.h b/chrome/browser/ui/startup/obsolete_system_infobar_delegate.h index 3f234c0..dde2e65 100644 --- a/chrome/browser/ui/startup/obsolete_system_infobar_delegate.h +++ b/chrome/browser/ui/startup/obsolete_system_infobar_delegate.h @@ -24,10 +24,10 @@ class ObsoleteSystemInfoBarDelegate : public ConfirmInfoBarDelegate { ObsoleteSystemInfoBarDelegate(); virtual ~ObsoleteSystemInfoBarDelegate(); - virtual base::string16 GetMessageText() const OVERRIDE; - virtual int GetButtons() const OVERRIDE; - virtual base::string16 GetLinkText() const OVERRIDE; - virtual bool LinkClicked(WindowOpenDisposition disposition) OVERRIDE; + virtual base::string16 GetMessageText() const override; + virtual int GetButtons() const override; + virtual base::string16 GetLinkText() const override; + virtual bool LinkClicked(WindowOpenDisposition disposition) override; DISALLOW_COPY_AND_ASSIGN(ObsoleteSystemInfoBarDelegate); }; |