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

Unified Diff: chrome/browser/custom_handlers/register_protocol_handler_infobar_delegate.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/custom_handlers/register_protocol_handler_infobar_delegate.h
diff --git a/chrome/browser/custom_handlers/register_protocol_handler_infobar_delegate.h b/chrome/browser/custom_handlers/register_protocol_handler_infobar_delegate.h
index 08c93072d9072db06c713372ba60b32e7ebac55b..7375ca8668c649ca01cf263d56eb2dee35f8c8eb 100644
--- a/chrome/browser/custom_handlers/register_protocol_handler_infobar_delegate.h
+++ b/chrome/browser/custom_handlers/register_protocol_handler_infobar_delegate.h
@@ -30,17 +30,17 @@ class RegisterProtocolHandlerInfoBarDelegate : public ConfirmInfoBarDelegate {
virtual ~RegisterProtocolHandlerInfoBarDelegate();
// ConfirmInfoBarDelegate:
- virtual InfoBarAutomationType GetInfoBarAutomationType() const OVERRIDE;
- virtual Type GetInfoBarType() const OVERRIDE;
+ virtual InfoBarAutomationType GetInfoBarAutomationType() const override;
+ virtual Type GetInfoBarType() const override;
virtual RegisterProtocolHandlerInfoBarDelegate*
- AsRegisterProtocolHandlerInfoBarDelegate() OVERRIDE;
- virtual base::string16 GetMessageText() const OVERRIDE;
- virtual base::string16 GetButtonLabel(InfoBarButton button) const OVERRIDE;
- virtual bool OKButtonTriggersUACPrompt() const OVERRIDE;
- virtual bool Accept() OVERRIDE;
- virtual bool Cancel() OVERRIDE;
- virtual base::string16 GetLinkText() const OVERRIDE;
- virtual bool LinkClicked(WindowOpenDisposition disposition) OVERRIDE;
+ AsRegisterProtocolHandlerInfoBarDelegate() override;
+ virtual base::string16 GetMessageText() const override;
+ virtual base::string16 GetButtonLabel(InfoBarButton button) const override;
+ virtual bool OKButtonTriggersUACPrompt() const override;
+ virtual bool Accept() override;
+ virtual bool Cancel() override;
+ virtual base::string16 GetLinkText() const override;
+ virtual bool LinkClicked(WindowOpenDisposition disposition) override;
// Returns a user-friendly name for the protocol of this protocol handler.
base::string16 GetProtocolName(const ProtocolHandler& handler) const;

Powered by Google App Engine
This is Rietveld 408576698