| Index: chrome/browser/ui/android/content_settings/popup_blocked_infobar_delegate.h
|
| diff --git a/chrome/browser/ui/android/content_settings/popup_blocked_infobar_delegate.h b/chrome/browser/ui/android/content_settings/popup_blocked_infobar_delegate.h
|
| index 6a1790e46b1e60a1a84f44c475f91fcdf0d01f2c..3296ead03f154a761b04fcb99093a9288ec11965 100644
|
| --- a/chrome/browser/ui/android/content_settings/popup_blocked_infobar_delegate.h
|
| +++ b/chrome/browser/ui/android/content_settings/popup_blocked_infobar_delegate.h
|
| @@ -20,7 +20,7 @@ class PopupBlockedInfoBarDelegate : public ConfirmInfoBarDelegate {
|
| // |infobar_service|.
|
| static void Create(content::WebContents* web_contents, int num_popups);
|
|
|
| - virtual ~PopupBlockedInfoBarDelegate();
|
| + ~PopupBlockedInfoBarDelegate() override;
|
|
|
| private:
|
| PopupBlockedInfoBarDelegate(int num_popups,
|
| @@ -28,12 +28,12 @@ class PopupBlockedInfoBarDelegate : public ConfirmInfoBarDelegate {
|
| HostContentSettingsMap* map);
|
|
|
| // ConfirmInfoBarDelegate:
|
| - virtual int GetIconID() const override;
|
| - virtual PopupBlockedInfoBarDelegate* AsPopupBlockedInfoBarDelegate() override;
|
| - virtual base::string16 GetMessageText() const override;
|
| - virtual int GetButtons() const override;
|
| - virtual base::string16 GetButtonLabel(InfoBarButton button) const override;
|
| - virtual bool Accept() override;
|
| + int GetIconID() const override;
|
| + PopupBlockedInfoBarDelegate* AsPopupBlockedInfoBarDelegate() override;
|
| + base::string16 GetMessageText() const override;
|
| + int GetButtons() const override;
|
| + base::string16 GetButtonLabel(InfoBarButton button) const override;
|
| + bool Accept() override;
|
|
|
| int num_popups_;
|
| GURL url_;
|
|
|