| Index: google_apis/gaia/oauth2_token_service_test_util.h
|
| diff --git a/google_apis/gaia/oauth2_token_service_test_util.h b/google_apis/gaia/oauth2_token_service_test_util.h
|
| index f31cf58c562c17d174ba4662dca206193ae79201..6a14f139bedfecafb1d2d6a44f86107ec8b96374 100644
|
| --- a/google_apis/gaia/oauth2_token_service_test_util.h
|
| +++ b/google_apis/gaia/oauth2_token_service_test_util.h
|
| @@ -16,14 +16,14 @@ std::string GetValidTokenResponse(std::string token, int expiration);
|
| class TestingOAuth2TokenServiceConsumer : public OAuth2TokenService::Consumer {
|
| public:
|
| TestingOAuth2TokenServiceConsumer();
|
| - virtual ~TestingOAuth2TokenServiceConsumer();
|
| + ~TestingOAuth2TokenServiceConsumer() override;
|
|
|
| // OAuth2TokenService::Consumer overrides.
|
| - virtual void OnGetTokenSuccess(const OAuth2TokenService::Request* request,
|
| - const std::string& token,
|
| - const base::Time& expiration_date) override;
|
| - virtual void OnGetTokenFailure(const OAuth2TokenService::Request* request,
|
| - const GoogleServiceAuthError& error) override;
|
| + void OnGetTokenSuccess(const OAuth2TokenService::Request* request,
|
| + const std::string& token,
|
| + const base::Time& expiration_date) override;
|
| + void OnGetTokenFailure(const OAuth2TokenService::Request* request,
|
| + const GoogleServiceAuthError& error) override;
|
|
|
| std::string last_token_;
|
| int number_of_successful_tokens_;
|
|
|