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

Unified Diff: chrome/browser/supervised_user/supervised_user_navigation_observer.cc

Issue 629603002: replace OVERRIDE and FINAL with override and final in chrome/browser/[r-z]* (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: rebase on master 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/supervised_user/supervised_user_navigation_observer.cc
diff --git a/chrome/browser/supervised_user/supervised_user_navigation_observer.cc b/chrome/browser/supervised_user/supervised_user_navigation_observer.cc
index d601f4f06a67acf7358b370fa6a1b98650f5f047..655222d06a6c1e49ccd4dc66b032a67e251926d1 100644
--- a/chrome/browser/supervised_user/supervised_user_navigation_observer.cc
+++ b/chrome/browser/supervised_user/supervised_user_navigation_observer.cc
@@ -88,12 +88,12 @@ class SupervisedUserWarningInfoBarDelegate : public ConfirmInfoBarDelegate {
virtual ~SupervisedUserWarningInfoBarDelegate();
// ConfirmInfoBarDelegate:
- virtual bool ShouldExpire(const NavigationDetails& details) const OVERRIDE;
- virtual void InfoBarDismissed() OVERRIDE;
- virtual base::string16 GetMessageText() const OVERRIDE;
- virtual int GetButtons() const OVERRIDE;
- virtual base::string16 GetButtonLabel(InfoBarButton button) const OVERRIDE;
- virtual bool Accept() OVERRIDE;
+ virtual bool ShouldExpire(const NavigationDetails& details) const override;
+ virtual void InfoBarDismissed() override;
+ virtual base::string16 GetMessageText() const override;
+ virtual int GetButtons() const override;
+ virtual base::string16 GetButtonLabel(InfoBarButton button) const override;
+ virtual bool Accept() override;
DISALLOW_COPY_AND_ASSIGN(SupervisedUserWarningInfoBarDelegate);
};

Powered by Google App Engine
This is Rietveld 408576698