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

Unified Diff: chrome/browser/ui/auto_login_infobar_delegate.cc

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/auto_login_infobar_delegate.cc
diff --git a/chrome/browser/ui/auto_login_infobar_delegate.cc b/chrome/browser/ui/auto_login_infobar_delegate.cc
index c4e20c0f1f8081ca8c526813fac6086e2769b471..9cb09d7d7decdb9e03607aaa6aa45c9c4f8b4d8d 100644
--- a/chrome/browser/ui/auto_login_infobar_delegate.cc
+++ b/chrome/browser/ui/auto_login_infobar_delegate.cc
@@ -49,15 +49,15 @@ class AutoLoginRedirector : public UbertokenConsumer,
public:
AutoLoginRedirector(content::WebContents* web_contents,
const std::string& args);
- virtual ~AutoLoginRedirector();
+ ~AutoLoginRedirector() override;
private:
// Overriden from UbertokenConsumer:
- virtual void OnUbertokenSuccess(const std::string& token) override;
- virtual void OnUbertokenFailure(const GoogleServiceAuthError& error) override;
+ void OnUbertokenSuccess(const std::string& token) override;
+ void OnUbertokenFailure(const GoogleServiceAuthError& error) override;
// Implementation of content::WebContentsObserver
- virtual void WebContentsDestroyed() override;
+ void WebContentsDestroyed() override;
// Redirect tab to MergeSession URL, logging the user in and navigating
// to the desired page.
« no previous file with comments | « chrome/browser/ui/auto_login_infobar_delegate.h ('k') | chrome/browser/ui/screen_capture_notification_ui_stub.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698