| 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 aded2eef4010bf5a5fe70c8f701b03240403d224..1f4180d222613199c66d18c605e0e36412fff90a 100644
|
| --- a/google_apis/gaia/oauth2_mint_token_flow.h
|
| +++ b/google_apis/gaia/oauth2_mint_token_flow.h
|
| @@ -99,17 +99,15 @@ class OAuth2MintTokenFlow : public OAuth2ApiCallFlow {
|
| };
|
|
|
| OAuth2MintTokenFlow(Delegate* delegate, const Parameters& parameters);
|
| - virtual ~OAuth2MintTokenFlow();
|
| + ~OAuth2MintTokenFlow() override;
|
|
|
| protected:
|
| // Implementation of template methods in OAuth2ApiCallFlow.
|
| - virtual GURL CreateApiCallUrl() override;
|
| - virtual std::string CreateApiCallBody() override;
|
| + GURL CreateApiCallUrl() override;
|
| + std::string CreateApiCallBody() override;
|
|
|
| - virtual void ProcessApiCallSuccess(
|
| - const net::URLFetcher* source) override;
|
| - virtual void ProcessApiCallFailure(
|
| - const net::URLFetcher* source) override;
|
| + void ProcessApiCallSuccess(const net::URLFetcher* source) override;
|
| + void ProcessApiCallFailure(const net::URLFetcher* source) override;
|
|
|
| private:
|
| friend class OAuth2MintTokenFlowTest;
|
|
|