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 7b7561f8c5cfb6ca3d109d6214a5db6818344df2..dcda11125cf7921f0d5584501e8272fae3ee4a84 100644 |
--- a/chrome/browser/extensions/token_cache/token_cache_service.h |
+++ b/chrome/browser/extensions/token_cache/token_cache_service.h |
@@ -12,7 +12,7 @@ |
#include "base/compiler_specific.h" |
#include "base/time/time.h" |
#include "chrome/browser/signin/signin_manager_base.h" |
-#include "components/browser_context_keyed_service/browser_context_keyed_service.h" |
+#include "components/keyed_service/core/keyed_service.h" |
class Profile; |
@@ -21,7 +21,7 @@ namespace extensions { |
// This class caches tokens for the current user. It will clear tokens out |
// when the user logs out or after the specified timeout interval, or when |
// the instance of chrome shuts down. |
-class TokenCacheService : public BrowserContextKeyedService, |
+class TokenCacheService : public KeyedService, |
public SigninManagerBase::Observer { |
public: |
explicit TokenCacheService(Profile* profile); |
@@ -38,7 +38,7 @@ class TokenCacheService : public BrowserContextKeyedService, |
// string if the token was not found or timed out. |
std::string RetrieveToken(const std::string& token_name); |
- // BrowserContextKeyedService: |
+ // KeyedService: |
virtual void Shutdown() OVERRIDE; |
private: |