Chromium Code Reviews

Unified Diff: chrome/browser/infobars/simple_alert_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.
Jump to:
View side-by-side diff with in-line comments
Index: chrome/browser/infobars/simple_alert_infobar_delegate.h
diff --git a/chrome/browser/infobars/simple_alert_infobar_delegate.h b/chrome/browser/infobars/simple_alert_infobar_delegate.h
index eb0f1b15ce8aaf10cec331e685d2a932ee8bbe9c..19b48c1538f8edf6b8dac1f3336307ee70798143 100644
--- a/chrome/browser/infobars/simple_alert_infobar_delegate.h
+++ b/chrome/browser/infobars/simple_alert_infobar_delegate.h
@@ -28,11 +28,11 @@ class SimpleAlertInfoBarDelegate : public ConfirmInfoBarDelegate {
virtual ~SimpleAlertInfoBarDelegate();
// ConfirmInfoBarDelegate:
- virtual int GetIconID() const OVERRIDE;
- virtual base::string16 GetMessageText() const OVERRIDE;
- virtual int GetButtons() const OVERRIDE;
+ virtual int GetIconID() const override;
+ virtual base::string16 GetMessageText() const override;
+ virtual int GetButtons() const override;
virtual bool ShouldExpireInternal(
- const NavigationDetails& details) const OVERRIDE;
+ const NavigationDetails& details) const override;
const int icon_id_;
base::string16 message_;

Powered by Google App Engine