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

Unified Diff: chrome/browser/ui/android/content_settings/popup_blocked_infobar_delegate.h

Issue 900733003: Update {virtual,override,final} to follow C++11 style. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: rebase Created 5 years, 10 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/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_;

Powered by Google App Engine
This is Rietveld 408576698