Index: chrome/browser/extensions/token_cache/token_cache_factory.h |
diff --git a/chrome/browser/extensions/token_cache/token_cache_factory.h b/chrome/browser/extensions/token_cache/token_cache_factory.h |
new file mode 100644 |
index 0000000000000000000000000000000000000000..38224ffc6a7ca619992da40df7c4e77ca4ea2497 |
--- /dev/null |
+++ b/chrome/browser/extensions/token_cache/token_cache_factory.h |
@@ -0,0 +1,34 @@ |
+// Copyright (c) 2013 The Chromium Authors. All rights reserved. |
+// Use of this source code is governed by a BSD-style license that can be |
+// found in the LICENSE file. |
+ |
+#ifndef CHROME_BROWSER_EXTENSIONS_TOKEN_CACHE_TOKEN_CACHE_FACTORY_H_ |
+#define CHROME_BROWSER_EXTENSIONS_TOKEN_CACHE_TOKEN_CACHE_FACTORY_H_ |
+ |
+#include "base/compiler_specific.h" |
+#include "base/memory/singleton.h" |
+#include "chrome/browser/profiles/profile_keyed_service_factory.h" |
+ |
+namespace extensions { |
+class TokenCacheService; |
+} // namespace extensions |
+ |
+class TokenCacheServiceFactory : public ProfileKeyedServiceFactory { |
+ public: |
+ static extensions::TokenCacheService* GetForProfile(Profile* profile); |
+ static TokenCacheServiceFactory* GetInstance(); |
+ |
+ private: |
+ TokenCacheServiceFactory(); |
+ virtual ~TokenCacheServiceFactory(); |
+ |
+ friend struct DefaultSingletonTraits<TokenCacheServiceFactory>; |
+ |
+ // Inherited from ProfileKeyedServiceFactory: |
dcheng
2013/03/06 00:26:35
Fix indent (this looks like 3 spaces)
Pete Williamson
2013/03/06 19:04:31
Done.
|
+ virtual ProfileKeyedService* BuildServiceInstanceFor( |
+ Profile* profile) const OVERRIDE; |
+ |
+ DISALLOW_COPY_AND_ASSIGN(TokenCacheServiceFactory); |
+}; |
+ |
+#endif // CHROME_BROWSER_EXTENSIONS_TOKEN_CACHE_TOKEN_CACHE_FACTORY_H_ |