Chromium Code Reviews

Unified Diff: google_apis/drive/auth_service.h

Issue 625293003: replace OVERRIDE and FINAL with override and final in google_apis/ (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: another rebase on master 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 | « no previous file | google_apis/drive/auth_service.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: google_apis/drive/auth_service.h
diff --git a/google_apis/drive/auth_service.h b/google_apis/drive/auth_service.h
index f055a1ccb31f85ac7666afbd8bba2b816ff98af5..2c74ad1768ce1cdd763b683dbe9b76583e3fe202 100644
--- a/google_apis/drive/auth_service.h
+++ b/google_apis/drive/auth_service.h
@@ -40,18 +40,18 @@ class AuthService : public AuthServiceInterface,
virtual ~AuthService();
// Overriden from AuthServiceInterface:
- virtual void AddObserver(AuthServiceObserver* observer) OVERRIDE;
- virtual void RemoveObserver(AuthServiceObserver* observer) OVERRIDE;
- virtual void StartAuthentication(const AuthStatusCallback& callback) OVERRIDE;
- virtual bool HasAccessToken() const OVERRIDE;
- virtual bool HasRefreshToken() const OVERRIDE;
- virtual const std::string& access_token() const OVERRIDE;
- virtual void ClearAccessToken() OVERRIDE;
- virtual void ClearRefreshToken() OVERRIDE;
+ virtual void AddObserver(AuthServiceObserver* observer) override;
+ virtual void RemoveObserver(AuthServiceObserver* observer) override;
+ virtual void StartAuthentication(const AuthStatusCallback& callback) override;
+ virtual bool HasAccessToken() const override;
+ virtual bool HasRefreshToken() const override;
+ virtual const std::string& access_token() const override;
+ virtual void ClearAccessToken() override;
+ virtual void ClearRefreshToken() override;
// Overridden from OAuth2TokenService::Observer:
- virtual void OnRefreshTokenAvailable(const std::string& account_id) OVERRIDE;
- virtual void OnRefreshTokenRevoked(const std::string& account_id) OVERRIDE;
+ virtual void OnRefreshTokenAvailable(const std::string& account_id) override;
+ virtual void OnRefreshTokenRevoked(const std::string& account_id) override;
private:
// Called when the state of the refresh token changes.
« no previous file with comments | « no previous file | google_apis/drive/auth_service.cc » ('j') | no next file with comments »

Powered by Google App Engine