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

Unified Diff: components/user_manager/empty_user_info.h

Issue 684513002: Standardize usage of virtual/override/final specifiers. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: rebase 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: components/user_manager/empty_user_info.h
diff --git a/components/user_manager/empty_user_info.h b/components/user_manager/empty_user_info.h
index 01dcfbf24359364ccda7cdb14b5eabe3a3faa78d..52d677c3e2fd0ba65dc2b64aad667696a804b847 100644
--- a/components/user_manager/empty_user_info.h
+++ b/components/user_manager/empty_user_info.h
@@ -19,14 +19,14 @@ namespace user_manager {
class USER_MANAGER_EXPORT EmptyUserInfo : public UserInfo {
public:
EmptyUserInfo();
- virtual ~EmptyUserInfo();
+ ~EmptyUserInfo() override;
// 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;
+ base::string16 GetDisplayName() const override;
+ base::string16 GetGivenName() const override;
+ std::string GetEmail() const override;
+ std::string GetUserID() const override;
+ const gfx::ImageSkia& GetImage() const override;
private:
const gfx::ImageSkia null_image_;
« no previous file with comments | « components/translate/core/browser/translate_script_unittest.cc ('k') | components/user_manager/user_info_impl.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698