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

Unified Diff: google_apis/gaia/oauth2_token_service_request.cc

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
Index: google_apis/gaia/oauth2_token_service_request.cc
diff --git a/google_apis/gaia/oauth2_token_service_request.cc b/google_apis/gaia/oauth2_token_service_request.cc
index 1ef48c631043c80886f5b7f320ec43bba77102c0..8301fd5e055d56165f5e1ef43a4f46f1d9192264 100644
--- a/google_apis/gaia/oauth2_token_service_request.cc
+++ b/google_apis/gaia/oauth2_token_service_request.cc
@@ -165,9 +165,9 @@ class RequestCore : public OAuth2TokenServiceRequest::Core,
// OAuth2TokenService::Consumer. Must be called on the token service thread.
virtual void OnGetTokenSuccess(const OAuth2TokenService::Request* request,
const std::string& access_token,
- const base::Time& expiration_time) OVERRIDE;
+ const base::Time& expiration_time) override;
virtual void OnGetTokenFailure(const OAuth2TokenService::Request* request,
- const GoogleServiceAuthError& error) OVERRIDE;
+ const GoogleServiceAuthError& error) override;
private:
friend class base::RefCountedThreadSafe<RequestCore>;
@@ -176,8 +176,8 @@ class RequestCore : public OAuth2TokenServiceRequest::Core,
virtual ~RequestCore();
// Core implementation.
- virtual void StartOnTokenServiceThread() OVERRIDE;
- virtual void StopOnTokenServiceThread() OVERRIDE;
+ virtual void StartOnTokenServiceThread() override;
+ virtual void StopOnTokenServiceThread() override;
void InformOwnerOnGetTokenSuccess(std::string access_token,
base::Time expiration_time);
@@ -282,8 +282,8 @@ class InvalidateCore : public OAuth2TokenServiceRequest::Core {
virtual ~InvalidateCore();
// Core implementation.
- virtual void StartOnTokenServiceThread() OVERRIDE;
- virtual void StopOnTokenServiceThread() OVERRIDE;
+ virtual void StartOnTokenServiceThread() override;
+ virtual void StopOnTokenServiceThread() override;
std::string access_token_;
std::string account_id_;
« no previous file with comments | « google_apis/gaia/oauth2_token_service_request.h ('k') | google_apis/gaia/oauth2_token_service_request_unittest.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698