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

Unified Diff: chrome/browser/ui/webui/signin/user_manager_screen_handler.cc

Issue 629463003: replace OVERRIDE and FINAL with override and final in chrome/browser/ui/[w-z]* (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/ui/webui/signin/user_manager_screen_handler.cc
diff --git a/chrome/browser/ui/webui/signin/user_manager_screen_handler.cc b/chrome/browser/ui/webui/signin/user_manager_screen_handler.cc
index 7512ce809639c30c20543ff91f791516314248fd..0d88d16290daaa119a8ac9195a067436d46b979d 100644
--- a/chrome/browser/ui/webui/signin/user_manager_screen_handler.cc
+++ b/chrome/browser/ui/webui/signin/user_manager_screen_handler.cc
@@ -172,13 +172,13 @@ class UserManagerScreenHandler::ProfileUpdateObserver
// ProfileInfoCacheObserver implementation:
// If any change has been made to a profile, propagate it to all the
// visible user manager screens.
- virtual void OnProfileAdded(const base::FilePath& profile_path) OVERRIDE {
+ virtual void OnProfileAdded(const base::FilePath& profile_path) override {
user_manager_handler_->SendUserList();
}
virtual void OnProfileWasRemoved(
const base::FilePath& profile_path,
- const base::string16& profile_name) OVERRIDE {
+ const base::string16& profile_name) override {
// TODO(noms): Change 'SendUserList' to 'removeUser' JS-call when
// UserManager is able to find pod belonging to removed user.
user_manager_handler_->SendUserList();
@@ -186,17 +186,17 @@ class UserManagerScreenHandler::ProfileUpdateObserver
virtual void OnProfileNameChanged(
const base::FilePath& profile_path,
- const base::string16& old_profile_name) OVERRIDE {
+ const base::string16& old_profile_name) override {
user_manager_handler_->SendUserList();
}
virtual void OnProfileAvatarChanged(
- const base::FilePath& profile_path) OVERRIDE {
+ const base::FilePath& profile_path) override {
user_manager_handler_->SendUserList();
}
virtual void OnProfileSigninRequiredChanged(
- const base::FilePath& profile_path) OVERRIDE {
+ const base::FilePath& profile_path) override {
user_manager_handler_->SendUserList();
}

Powered by Google App Engine
This is Rietveld 408576698