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

Unified Diff: chrome/browser/password_manager/save_password_infobar_delegate.h

Issue 659563005: Standardize usage of virtual/override/final in chrome/browser/password_manager (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: 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/password_manager/save_password_infobar_delegate.h
diff --git a/chrome/browser/password_manager/save_password_infobar_delegate.h b/chrome/browser/password_manager/save_password_infobar_delegate.h
index cc8f7fa5480225487297aca11f5f8ed5267cc437..96b0fd1b5acbc0e758d405900f65df37af48f118 100644
--- a/chrome/browser/password_manager/save_password_infobar_delegate.h
+++ b/chrome/browser/password_manager/save_password_infobar_delegate.h
@@ -42,21 +42,21 @@ class SavePasswordInfoBarDelegate : public ConfirmInfoBarDelegate {
scoped_ptr<password_manager::PasswordFormManager> form_to_save,
const std::string& uma_histogram_suffix);
- virtual ~SavePasswordInfoBarDelegate();
+ ~SavePasswordInfoBarDelegate() override;
// InfoBarDelegate
- virtual bool ShouldExpire(const NavigationDetails& details) const override;
+ bool ShouldExpire(const NavigationDetails& details) const override;
// ConfirmInfoBarDelegate
- virtual int GetIconID() const override;
- virtual Type GetInfoBarType() const override;
- virtual base::string16 GetMessageText() const override;
- virtual base::string16 GetButtonLabel(InfoBarButton button) const override;
- virtual bool Accept() override;
- virtual bool Cancel() override;
- virtual void InfoBarDismissed() override;
+ int GetIconID() const override;
+ Type GetInfoBarType() const override;
+ base::string16 GetMessageText() const override;
+ base::string16 GetButtonLabel(InfoBarButton button) const override;
+ bool Accept() override;
+ bool Cancel() override;
+ void InfoBarDismissed() override;
- virtual InfoBarAutomationType GetInfoBarAutomationType() const override;
+ InfoBarAutomationType GetInfoBarAutomationType() const override;
// The PasswordFormManager managing the form we're asking the user about,
// and should update as per her decision.

Powered by Google App Engine
This is Rietveld 408576698