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

Unified Diff: chrome/browser/extensions/token_cache/token_cache_service.h

Issue 624153002: replace OVERRIDE and FINAL with override and final in chrome/browser/extensions/ (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: 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/extensions/token_cache/token_cache_service.h
diff --git a/chrome/browser/extensions/token_cache/token_cache_service.h b/chrome/browser/extensions/token_cache/token_cache_service.h
index a533bbae11da51ba21d352819e975efbef2ec82f..c90e74a8466d569bc3b01ac7c847266dad341fea 100644
--- a/chrome/browser/extensions/token_cache/token_cache_service.h
+++ b/chrome/browser/extensions/token_cache/token_cache_service.h
@@ -39,7 +39,7 @@ class TokenCacheService : public KeyedService,
std::string RetrieveToken(const std::string& token_name);
// KeyedService:
- virtual void Shutdown() OVERRIDE;
+ virtual void Shutdown() override;
private:
friend class TokenCacheTest;
@@ -47,7 +47,7 @@ class TokenCacheService : public KeyedService,
// SigninManagerBase::Observer:
virtual void GoogleSignedOut(const std::string& account_id,
- const std::string& username) OVERRIDE;
+ const std::string& username) override;
struct TokenCacheData {
std::string token;

Powered by Google App Engine
This is Rietveld 408576698