summaryrefslogtreecommitdiffstats
path: root/google_apis/gaia/oauth2_token_service_test_util.h
diff options
context:
space:
mode:
authormostynb <mostynb@opera.com>2014-10-07 00:43:43 -0700
committerCommit bot <commit-bot@chromium.org>2014-10-07 07:44:10 +0000
commit80a0034deb351823d05235be94c1da161b769f28 (patch)
treececfd0a2720d1cc328011b0976448bf7e7658f94 /google_apis/gaia/oauth2_token_service_test_util.h
parentc4fa57ece12dbe14c9f59c55ad6cadcfb645ff41 (diff)
downloadchromium_src-80a0034deb351823d05235be94c1da161b769f28.zip
chromium_src-80a0034deb351823d05235be94c1da161b769f28.tar.gz
chromium_src-80a0034deb351823d05235be94c1da161b769f28.tar.bz2
replace OVERRIDE and FINAL with override and final in google_apis/
R=rogerta@chromium.org,dcheng@chromium.org BUG=417463 Review URL: https://codereview.chromium.org/625293003 Cr-Commit-Position: refs/heads/master@{#298418}
Diffstat (limited to 'google_apis/gaia/oauth2_token_service_test_util.h')
-rw-r--r--google_apis/gaia/oauth2_token_service_test_util.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/google_apis/gaia/oauth2_token_service_test_util.h b/google_apis/gaia/oauth2_token_service_test_util.h
index 53ccdf8..f31cf58 100644
--- a/google_apis/gaia/oauth2_token_service_test_util.h
+++ b/google_apis/gaia/oauth2_token_service_test_util.h
@@ -21,9 +21,9 @@ class TestingOAuth2TokenServiceConsumer : public OAuth2TokenService::Consumer {
// OAuth2TokenService::Consumer overrides.
virtual void OnGetTokenSuccess(const OAuth2TokenService::Request* request,
const std::string& token,
- const base::Time& expiration_date) OVERRIDE;
+ const base::Time& expiration_date) override;
virtual void OnGetTokenFailure(const OAuth2TokenService::Request* request,
- const GoogleServiceAuthError& error) OVERRIDE;
+ const GoogleServiceAuthError& error) override;
std::string last_token_;
int number_of_successful_tokens_;