Index: chrome/browser/sync/profile_sync_auth_provider.h |
diff --git a/chrome/browser/sync/profile_sync_auth_provider.h b/chrome/browser/sync/profile_sync_auth_provider.h |
index f87d721bb5209d58d18179efb607bace5ba3166e..de3f3d9e67f8a978a47d54f3e1c50a4c38dca1a2 100644 |
--- a/chrome/browser/sync/profile_sync_auth_provider.h |
+++ b/chrome/browser/sync/profile_sync_auth_provider.h |
@@ -26,14 +26,14 @@ class ProfileSyncAuthProvider : public OAuth2TokenService::Consumer, |
ProfileSyncAuthProvider(ProfileOAuth2TokenService* token_service, |
const std::string& account_id, |
const std::string& scope); |
- virtual ~ProfileSyncAuthProvider(); |
+ ~ProfileSyncAuthProvider() override; |
// OAuth2TokenService::Consumer implementation. |
- virtual void OnGetTokenSuccess(const OAuth2TokenService::Request* request, |
- const std::string& access_token, |
- const base::Time& expiration_time) override; |
- virtual void OnGetTokenFailure(const OAuth2TokenService::Request* request, |
- const GoogleServiceAuthError& error) override; |
+ void OnGetTokenSuccess(const OAuth2TokenService::Request* request, |
+ const std::string& access_token, |
+ const base::Time& expiration_time) override; |
+ void OnGetTokenFailure(const OAuth2TokenService::Request* request, |
+ const GoogleServiceAuthError& error) override; |
// Request access token from OAuth2TokenService. Once access token is received |
// result should be posted to callback on task_runner thread. |