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

Unified Diff: chrome/browser/chromeos/login/signin_screen_controller.h

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/signin_screen_controller.h
diff --git a/chrome/browser/chromeos/login/signin_screen_controller.h b/chrome/browser/chromeos/login/signin_screen_controller.h
index fd75a661fa181a8aa809939a3000b002be06aa0d..3b3600c598145a519092900ca290cf3a07b11ee8 100644
--- a/chrome/browser/chromeos/login/signin_screen_controller.h
+++ b/chrome/browser/chromeos/login/signin_screen_controller.h
@@ -25,7 +25,7 @@ class SignInScreenController : public user_manager::RemoveUserDelegate,
public:
SignInScreenController(OobeDisplay* oobe_display,
LoginDisplay::Delegate* login_display_delegate);
- virtual ~SignInScreenController();
+ ~SignInScreenController() override;
// Returns the default wizard controller if it has been created.
static SignInScreenController* Get() { return instance_; }
@@ -50,13 +50,13 @@ class SignInScreenController : public user_manager::RemoveUserDelegate,
void RemoveUser(const std::string& user_id);
// user_manager::RemoveUserDelegate implementation:
- virtual void OnBeforeUserRemoved(const std::string& username) override;
- virtual void OnUserRemoved(const std::string& username) override;
+ void OnBeforeUserRemoved(const std::string& username) override;
+ void OnUserRemoved(const std::string& username) override;
// content::NotificationObserver implementation.
- virtual void Observe(int type,
- const content::NotificationSource& source,
- const content::NotificationDetails& details) override;
+ void Observe(int type,
+ const content::NotificationSource& source,
+ const content::NotificationDetails& details) override;
private:
static SignInScreenController* instance_;

Powered by Google App Engine
This is Rietveld 408576698