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

Unified Diff: chrome/browser/chromeos/login/login_utils.cc

Issue 856493004: Update {virtual,override,final} to follow C++11 style in chrome/browser/chromeos/login. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: 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
Index: chrome/browser/chromeos/login/login_utils.cc
diff --git a/chrome/browser/chromeos/login/login_utils.cc b/chrome/browser/chromeos/login/login_utils.cc
index 36a6f2fd5f12094707f5815ff4377cce64d1e4d7..4ab088ac92bf570ddf1130b209d8a718132bdd39 100644
--- a/chrome/browser/chromeos/login/login_utils.cc
+++ b/chrome/browser/chromeos/login/login_utils.cc
@@ -26,24 +26,20 @@ class LoginUtilsImpl : public LoginUtils,
: delegate_(NULL) {
}
- virtual ~LoginUtilsImpl() {
- }
+ ~LoginUtilsImpl() override {}
// LoginUtils implementation:
- virtual void DoBrowserLaunch(Profile* profile,
- LoginDisplayHost* login_host) override;
- virtual void PrepareProfile(
- const UserContext& user_context,
- bool has_auth_cookies,
- bool has_active_session,
- LoginUtils::Delegate* delegate) override;
- virtual void DelegateDeleted(LoginUtils::Delegate* delegate) override;
- virtual scoped_refptr<Authenticator> CreateAuthenticator(
+ void DoBrowserLaunch(Profile* profile, LoginDisplayHost* login_host) override;
+ void PrepareProfile(const UserContext& user_context,
+ bool has_auth_cookies,
+ bool has_active_session,
+ LoginUtils::Delegate* delegate) override;
+ void DelegateDeleted(LoginUtils::Delegate* delegate) override;
+ scoped_refptr<Authenticator> CreateAuthenticator(
AuthStatusConsumer* consumer) override;
// UserSessionManager::Delegate implementation:
- virtual void OnProfilePrepared(Profile* profile,
- bool browser_launched) override;
+ void OnProfilePrepared(Profile* profile, bool browser_launched) override;
private:
// Has to be scoped_refptr, see comment for CreateAuthenticator(...).

Powered by Google App Engine
This is Rietveld 408576698