| 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 655222d06a6c1e49ccd4dc66b032a67e251926d1..9114f47248d8b4985a26b0718e226ae51ec91e4b 100644
|
| --- a/chrome/browser/supervised_user/supervised_user_navigation_observer.cc
|
| +++ b/chrome/browser/supervised_user/supervised_user_navigation_observer.cc
|
| @@ -85,15 +85,15 @@ class SupervisedUserWarningInfoBarDelegate : public ConfirmInfoBarDelegate {
|
|
|
| private:
|
| SupervisedUserWarningInfoBarDelegate();
|
| - virtual ~SupervisedUserWarningInfoBarDelegate();
|
| + ~SupervisedUserWarningInfoBarDelegate() override;
|
|
|
| // 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;
|
| + bool ShouldExpire(const NavigationDetails& details) const override;
|
| + void InfoBarDismissed() override;
|
| + base::string16 GetMessageText() const override;
|
| + int GetButtons() const override;
|
| + base::string16 GetButtonLabel(InfoBarButton button) const override;
|
| + bool Accept() override;
|
|
|
| DISALLOW_COPY_AND_ASSIGN(SupervisedUserWarningInfoBarDelegate);
|
| };
|
|
|