Update To 11.40.268.0
[platform/framework/web/crosswalk.git] / src / chrome / browser / extensions / token_cache / token_cache_service.h
index a533bba..feb634b 100644 (file)
@@ -25,7 +25,7 @@ class TokenCacheService : public KeyedService,
                           public SigninManagerBase::Observer {
  public:
   explicit TokenCacheService(Profile* profile);
-  virtual ~TokenCacheService();
+  ~TokenCacheService() override;
 
   // Store a token for the currently logged in user. We will look it up later by
   // the name given here, and we will expire the token after the timeout.  For a
@@ -39,15 +39,15 @@ class TokenCacheService : public KeyedService,
   std::string RetrieveToken(const std::string& token_name);
 
   // KeyedService:
-  virtual void Shutdown() OVERRIDE;
+  void Shutdown() override;
 
  private:
   friend class TokenCacheTest;
   FRIEND_TEST_ALL_PREFIXES(TokenCacheTest, SignoutTest);
 
   // SigninManagerBase::Observer:
-  virtual void GoogleSignedOut(const std::string& account_id,
-                               const std::string& username) OVERRIDE;
+  void GoogleSignedOut(const std::string& account_id,
+                       const std::string& username) override;
 
   struct TokenCacheData {
     std::string token;