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

Unified Diff: chrome/browser/ui/views/profiles/new_avatar_button.h

Issue 628773002: replace OVERRIDE and FINAL with override and final in chrome/browser/ui/[t-v]* (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/views/profiles/new_avatar_button.h
diff --git a/chrome/browser/ui/views/profiles/new_avatar_button.h b/chrome/browser/ui/views/profiles/new_avatar_button.h
index 76c40bfa09a9b56cca9f9a50c0654848c8e7391f..d66b7d95944d85e7cac084f74b17c56ee2b0c7d7 100644
--- a/chrome/browser/ui/views/profiles/new_avatar_button.h
+++ b/chrome/browser/ui/views/profiles/new_avatar_button.h
@@ -28,8 +28,8 @@ class NewAvatarButton : public views::LabelButton,
virtual ~NewAvatarButton();
// Views::LabelButton
- virtual bool OnMousePressed(const ui::MouseEvent& event) OVERRIDE;
- virtual void OnMouseReleased(const ui::MouseEvent& event) OVERRIDE;
+ virtual bool OnMousePressed(const ui::MouseEvent& event) override;
+ virtual void OnMouseReleased(const ui::MouseEvent& event) override;
private:
friend class NewAvatarMenuButtonTest;
@@ -38,20 +38,20 @@ class NewAvatarButton : public views::LabelButton,
FRIEND_TEST_ALL_PREFIXES(ProfileChooserViewBrowserTest, ViewProfileUMA);
// ProfileInfoCacheObserver:
- virtual void OnProfileAdded(const base::FilePath& profile_path) OVERRIDE;
+ virtual void OnProfileAdded(const base::FilePath& profile_path) override;
virtual void OnProfileWasRemoved(
const base::FilePath& profile_path,
- const base::string16& profile_name) OVERRIDE;
+ const base::string16& profile_name) override;
virtual void OnProfileNameChanged(
const base::FilePath& profile_path,
- const base::string16& old_profile_name) OVERRIDE;
+ const base::string16& old_profile_name) override;
virtual void OnProfileAvatarChanged(
- const base::FilePath& profile_path) OVERRIDE;
+ const base::FilePath& profile_path) override;
virtual void OnProfileSupervisedUserIdChanged(
- const base::FilePath& profile_path) OVERRIDE;
+ const base::FilePath& profile_path) override;
// SigninErrorController::Observer:
- virtual void OnErrorChanged() OVERRIDE;
+ virtual void OnErrorChanged() override;
// Called when the profile info cache has changed, which means we might
// have to update the icon/text of the button.

Powered by Google App Engine
This is Rietveld 408576698