| Index: google_apis/gaia/oauth2_access_token_fetcher_impl.h
|
| diff --git a/google_apis/gaia/oauth2_access_token_fetcher_impl.h b/google_apis/gaia/oauth2_access_token_fetcher_impl.h
|
| index c079bfdcd457c10a412d6ac5d96e80e6ec8187c3..6944d243e7d14a80e1eb807d662f6169d0b06e8f 100644
|
| --- a/google_apis/gaia/oauth2_access_token_fetcher_impl.h
|
| +++ b/google_apis/gaia/oauth2_access_token_fetcher_impl.h
|
| @@ -51,17 +51,17 @@ class OAuth2AccessTokenFetcherImpl : public OAuth2AccessTokenFetcher,
|
| OAuth2AccessTokenFetcherImpl(OAuth2AccessTokenConsumer* consumer,
|
| net::URLRequestContextGetter* getter,
|
| const std::string& refresh_token);
|
| - virtual ~OAuth2AccessTokenFetcherImpl();
|
| + ~OAuth2AccessTokenFetcherImpl() override;
|
|
|
| // Implementation of OAuth2AccessTokenFetcher
|
| - virtual void Start(const std::string& client_id,
|
| - const std::string& client_secret,
|
| - const std::vector<std::string>& scopes) override;
|
| + void Start(const std::string& client_id,
|
| + const std::string& client_secret,
|
| + const std::vector<std::string>& scopes) override;
|
|
|
| - virtual void CancelRequest() override;
|
| + void CancelRequest() override;
|
|
|
| // Implementation of net::URLFetcherDelegate
|
| - virtual void OnURLFetchComplete(const net::URLFetcher* source) override;
|
| + void OnURLFetchComplete(const net::URLFetcher* source) override;
|
|
|
| private:
|
| enum State {
|
|
|