Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(73)

Unified Diff: google_apis/gaia/oauth2_mint_token_flow.h

Issue 625293003: replace OVERRIDE and FINAL with override and final in google_apis/ (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: another rebase on master Created 6 years, 2 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « google_apis/gaia/oauth2_api_call_flow.h ('k') | google_apis/gaia/oauth2_token_service.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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;
« no previous file with comments | « google_apis/gaia/oauth2_api_call_flow.h ('k') | google_apis/gaia/oauth2_token_service.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698