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

Unified Diff: chrome/browser/ui/auto_login_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, 11 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
« no previous file with comments | « chrome/browser/ui/android/window_android_helper.h ('k') | chrome/browser/ui/auto_login_infobar_delegate.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: chrome/browser/ui/auto_login_infobar_delegate.h
diff --git a/chrome/browser/ui/auto_login_infobar_delegate.h b/chrome/browser/ui/auto_login_infobar_delegate.h
index 7877240bd4103012420973f79396c765cfef5a6c..07b4f5b2698aac1a0a42c44682e2f136e09cd47c 100644
--- a/chrome/browser/ui/auto_login_infobar_delegate.h
+++ b/chrome/browser/ui/auto_login_infobar_delegate.h
@@ -50,24 +50,24 @@ class AutoLoginInfoBarDelegate : public ConfirmInfoBarDelegate,
};
AutoLoginInfoBarDelegate(const Params& params, Profile* profile);
- virtual ~AutoLoginInfoBarDelegate();
+ ~AutoLoginInfoBarDelegate() override;
void RecordHistogramAction(Actions action);
private:
// ConfirmInfoBarDelegate:
- virtual void InfoBarDismissed() override;
- virtual int GetIconID() const override;
- virtual Type GetInfoBarType() const override;
- virtual AutoLoginInfoBarDelegate* AsAutoLoginInfoBarDelegate() override;
- virtual base::string16 GetMessageText() const override;
- virtual base::string16 GetButtonLabel(InfoBarButton button) const override;
- virtual bool Accept() override;
- virtual bool Cancel() override;
+ void InfoBarDismissed() override;
+ int GetIconID() const override;
+ Type GetInfoBarType() const override;
+ AutoLoginInfoBarDelegate* AsAutoLoginInfoBarDelegate() override;
+ base::string16 GetMessageText() const override;
+ base::string16 GetButtonLabel(InfoBarButton button) const override;
+ bool Accept() override;
+ bool Cancel() override;
// SigninManagerBase::Observer:
- virtual void GoogleSignedOut(const std::string& account_id,
- const std::string& username) override;
+ void GoogleSignedOut(const std::string& account_id,
+ const std::string& username) override;
const Params params_;
« no previous file with comments | « chrome/browser/ui/android/window_android_helper.h ('k') | chrome/browser/ui/auto_login_infobar_delegate.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698