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

Unified Diff: components/user_manager/user.cc

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. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « components/user_manager/user.h ('k') | components/user_manager/user_info_impl.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: components/user_manager/user.cc
diff --git a/components/user_manager/user.cc b/components/user_manager/user.cc
index b57d1d0db7d8a1106b9c324b28cf13c09fbe458d..664aa4ba5041bfb84ed780decfb0e281336b1137 100644
--- a/components/user_manager/user.cc
+++ b/components/user_manager/user.cc
@@ -42,13 +42,13 @@ class RegularUser : public User {
virtual ~RegularUser();
// Overridden from User:
- virtual UserType GetType() const OVERRIDE;
- virtual bool CanSyncImage() const OVERRIDE;
- virtual void SetIsSupervised(bool is_supervised) OVERRIDE {
+ virtual UserType GetType() const override;
+ virtual bool CanSyncImage() const override;
+ virtual void SetIsSupervised(bool is_supervised) override {
VLOG(1) << "Setting user is supervised to " << is_supervised;
is_supervised_ = is_supervised;
}
- virtual bool IsSupervised() const OVERRIDE {
+ virtual bool IsSupervised() const override {
return is_supervised_;
}
@@ -64,7 +64,7 @@ class GuestUser : public User {
virtual ~GuestUser();
// Overridden from User:
- virtual UserType GetType() const OVERRIDE;
+ virtual UserType GetType() const override;
private:
DISALLOW_COPY_AND_ASSIGN(GuestUser);
@@ -76,7 +76,7 @@ class KioskAppUser : public User {
virtual ~KioskAppUser();
// Overridden from User:
- virtual UserType GetType() const OVERRIDE;
+ virtual UserType GetType() const override;
private:
DISALLOW_COPY_AND_ASSIGN(KioskAppUser);
@@ -88,9 +88,9 @@ class SupervisedUser : public User {
virtual ~SupervisedUser();
// Overridden from User:
- virtual UserType GetType() const OVERRIDE;
- virtual bool IsSupervised() const OVERRIDE;
- virtual std::string display_email() const OVERRIDE;
+ virtual UserType GetType() const override;
+ virtual bool IsSupervised() const override;
+ virtual std::string display_email() const override;
private:
DISALLOW_COPY_AND_ASSIGN(SupervisedUser);
@@ -102,7 +102,7 @@ class RetailModeUser : public User {
virtual ~RetailModeUser();
// Overridden from User:
- virtual UserType GetType() const OVERRIDE;
+ virtual UserType GetType() const override;
private:
DISALLOW_COPY_AND_ASSIGN(RetailModeUser);
@@ -114,7 +114,7 @@ class PublicAccountUser : public User {
virtual ~PublicAccountUser();
// Overridden from User:
- virtual UserType GetType() const OVERRIDE;
+ virtual UserType GetType() const override;
private:
DISALLOW_COPY_AND_ASSIGN(PublicAccountUser);
« no previous file with comments | « components/user_manager/user.h ('k') | components/user_manager/user_info_impl.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698