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

Unified Diff: chrome/browser/services/gcm/gcm_account_tracker.h

Issue 629603002: replace OVERRIDE and FINAL with override and final in chrome/browser/[r-z]* (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: 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: chrome/browser/services/gcm/gcm_account_tracker.h
diff --git a/chrome/browser/services/gcm/gcm_account_tracker.h b/chrome/browser/services/gcm/gcm_account_tracker.h
index 243b58b25671498d053a927f4d56bec75df50289..628e1edc50f7e78532a8abcec5f70fb7d2e299d1 100644
--- a/chrome/browser/services/gcm/gcm_account_tracker.h
+++ b/chrome/browser/services/gcm/gcm_account_tracker.h
@@ -81,17 +81,17 @@ class GCMAccountTracker : public gaia::AccountTracker::Observer,
typedef std::map<std::string, AccountInfo> AccountInfos;
// AccountTracker::Observer overrides.
- virtual void OnAccountAdded(const gaia::AccountIds& ids) OVERRIDE;
- virtual void OnAccountRemoved(const gaia::AccountIds& ids) OVERRIDE;
+ virtual void OnAccountAdded(const gaia::AccountIds& ids) override;
+ virtual void OnAccountRemoved(const gaia::AccountIds& ids) override;
virtual void OnAccountSignInChanged(const gaia::AccountIds& ids,
- bool is_signed_in) OVERRIDE;
+ bool is_signed_in) override;
// OAuth2TokenService::Consumer overrides.
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;
// Report the list of accounts with OAuth2 tokens back using the |callback_|
// function. If there are token requests in progress, do nothing.
« no previous file with comments | « chrome/browser/services/gcm/fake_signin_manager.h ('k') | chrome/browser/services/gcm/gcm_profile_service.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698