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

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

Issue 12380006: Build a new TokenCacheService so I can stop using TokenService for something it wasn't designed for. (Closed) Base URL: http://git.chromium.org/chromium/src.git@master
Patch Set: Token Cache Service - update namespace Created 7 years, 10 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_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:
+ virtual ProfileKeyedService* BuildServiceInstanceFor(
+ Profile* profile) const OVERRIDE;
+
+ DISALLOW_COPY_AND_ASSIGN(TokenCacheServiceFactory);
+};
+
+#endif // CHROME_BROWSER_EXTENSIONS_TOKEN_CACHE_TOKEN_CACHE_FACTORY_H_

Powered by Google App Engine
This is Rietveld 408576698