| Index: google_apis/gaia/oauth2_mint_token_flow.h
|
| diff --git a/google_apis/gaia/oauth2_mint_token_flow.h b/google_apis/gaia/oauth2_mint_token_flow.h
|
| index 6c53c94564821463cc112df36c42eb142e86ec07..59cec79a6c6f69bc671854dca3c946900361ccdf 100644
|
| --- a/google_apis/gaia/oauth2_mint_token_flow.h
|
| +++ b/google_apis/gaia/oauth2_mint_token_flow.h
|
| @@ -108,16 +108,16 @@ class OAuth2MintTokenFlow : public OAuth2ApiCallFlow {
|
|
|
| protected:
|
| // Implementation of template methods in OAuth2ApiCallFlow.
|
| - virtual GURL CreateApiCallUrl() OVERRIDE;
|
| - virtual std::string CreateApiCallBody() OVERRIDE;
|
| + virtual GURL CreateApiCallUrl() override;
|
| + virtual std::string CreateApiCallBody() override;
|
|
|
| virtual void ProcessApiCallSuccess(
|
| - const net::URLFetcher* source) OVERRIDE;
|
| + const net::URLFetcher* source) override;
|
| virtual void ProcessApiCallFailure(
|
| - const net::URLFetcher* source) OVERRIDE;
|
| - virtual void ProcessNewAccessToken(const std::string& access_token) OVERRIDE;
|
| + const net::URLFetcher* source) override;
|
| + virtual void ProcessNewAccessToken(const std::string& access_token) override;
|
| virtual void ProcessMintAccessTokenFailure(
|
| - const GoogleServiceAuthError& error) OVERRIDE;
|
| + const GoogleServiceAuthError& error) override;
|
|
|
| private:
|
| friend class OAuth2MintTokenFlowTest;
|
|
|