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

Unified Diff: chrome/browser/ui/cocoa/profiles/avatar_base_controller.mm

Issue 627043002: replace OVERRIDE and FINAL with override and final in chrome/browser/ui/[a-s]* (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/cocoa/profiles/avatar_base_controller.mm
diff --git a/chrome/browser/ui/cocoa/profiles/avatar_base_controller.mm b/chrome/browser/ui/cocoa/profiles/avatar_base_controller.mm
index 86b3cf7519c7c84d67ff5a168e4a9e0be3da95f4..20273b67c2adbae4bde14405690c3bd3c03b3433 100644
--- a/chrome/browser/ui/cocoa/profiles/avatar_base_controller.mm
+++ b/chrome/browser/ui/cocoa/profiles/avatar_base_controller.mm
@@ -74,34 +74,34 @@ class ProfileInfoUpdateObserver : public ProfileInfoCacheObserver,
}
// ProfileInfoCacheObserver:
- virtual void OnProfileAdded(const base::FilePath& profile_path) OVERRIDE {
+ virtual void OnProfileAdded(const base::FilePath& profile_path) override {
[avatarController_ updateAvatarButtonAndLayoutParent:YES];
}
virtual void OnProfileWasRemoved(
const base::FilePath& profile_path,
- const base::string16& profile_name) OVERRIDE {
+ const base::string16& profile_name) override {
[avatarController_ updateAvatarButtonAndLayoutParent:YES];
}
virtual void OnProfileNameChanged(
const base::FilePath& profile_path,
- const base::string16& old_profile_name) OVERRIDE {
+ const base::string16& old_profile_name) override {
[avatarController_ updateAvatarButtonAndLayoutParent:YES];
}
virtual void OnProfileAvatarChanged(
- const base::FilePath& profile_path) OVERRIDE {
+ const base::FilePath& profile_path) override {
[avatarController_ updateAvatarButtonAndLayoutParent:YES];
}
virtual void OnProfileSupervisedUserIdChanged(
- const base::FilePath& profile_path) OVERRIDE {
+ const base::FilePath& profile_path) override {
[avatarController_ updateAvatarButtonAndLayoutParent:YES];
}
// SigninErrorController::Observer:
- virtual void OnErrorChanged() OVERRIDE {
+ virtual void OnErrorChanged() override {
SigninErrorController* errorController =
profiles::GetSigninErrorController(profile_);
if (errorController)

Powered by Google App Engine
This is Rietveld 408576698