Chromium Code Reviews

Unified Diff: components/user_manager/user_info_impl.h

Issue 623133002: replace OVERRIDE and FINAL with override and final in components/ (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.
Jump to:
View side-by-side diff with in-line comments
« no previous file with comments | « components/user_manager/user.cc ('k') | components/user_manager/user_manager_base.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: components/user_manager/user_info_impl.h
diff --git a/components/user_manager/user_info_impl.h b/components/user_manager/user_info_impl.h
index f024910a5ca3bc90072292dc17e00ad0e1deb6c9..ada257dcca57f6c8220a0d3df5bc8c5e55117bb7 100644
--- a/components/user_manager/user_info_impl.h
+++ b/components/user_manager/user_info_impl.h
@@ -21,11 +21,11 @@ class USER_MANAGER_EXPORT UserInfoImpl : public UserInfo {
virtual ~UserInfoImpl();
// UserInfo:
- virtual base::string16 GetDisplayName() const OVERRIDE;
- virtual base::string16 GetGivenName() const OVERRIDE;
- virtual std::string GetEmail() const OVERRIDE;
- virtual std::string GetUserID() const OVERRIDE;
- virtual const gfx::ImageSkia& GetImage() const OVERRIDE;
+ virtual base::string16 GetDisplayName() const override;
+ virtual base::string16 GetGivenName() const override;
+ virtual std::string GetEmail() const override;
+ virtual std::string GetUserID() const override;
+ virtual const gfx::ImageSkia& GetImage() const override;
private:
gfx::ImageSkia user_image_;
« no previous file with comments | « components/user_manager/user.cc ('k') | components/user_manager/user_manager_base.h » ('j') | no next file with comments »

Powered by Google App Engine