| 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 19b48c1538f8edf6b8dac1f3336307ee70798143..d25ab50bcfbc4cd9dbd84884dc1d436fa2f6b388 100644
|
| --- a/chrome/browser/infobars/simple_alert_infobar_delegate.h
|
| +++ b/chrome/browser/infobars/simple_alert_infobar_delegate.h
|
| @@ -25,14 +25,13 @@ class SimpleAlertInfoBarDelegate : public ConfirmInfoBarDelegate {
|
| SimpleAlertInfoBarDelegate(int icon_id,
|
| const base::string16& message,
|
| bool auto_expire);
|
| - virtual ~SimpleAlertInfoBarDelegate();
|
| + ~SimpleAlertInfoBarDelegate() override;
|
|
|
| // ConfirmInfoBarDelegate:
|
| - virtual int GetIconID() const override;
|
| - virtual base::string16 GetMessageText() const override;
|
| - virtual int GetButtons() const override;
|
| - virtual bool ShouldExpireInternal(
|
| - const NavigationDetails& details) const override;
|
| + int GetIconID() const override;
|
| + base::string16 GetMessageText() const override;
|
| + int GetButtons() const override;
|
| + bool ShouldExpireInternal(const NavigationDetails& details) const override;
|
|
|
| const int icon_id_;
|
| base::string16 message_;
|
|
|