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

Unified Diff: components/precache/content/precache_manager_factory.h

Issue 27047003: Precache tracking database (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@precache
Patch Set: Added field trials Created 7 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: components/precache/content/precache_manager_factory.h
diff --git a/components/precache/content/precache_manager_factory.h b/components/precache/content/precache_manager_factory.h
new file mode 100644
index 0000000000000000000000000000000000000000..4f22bd61309f001e1e7ea68c81a1c353817e461f
--- /dev/null
+++ b/components/precache/content/precache_manager_factory.h
@@ -0,0 +1,41 @@
+// Copyright 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 COMPONENTS_PRECACHE_CONTENT_PRECACHE_MANAGER_FACTORY_H_
+#define COMPONENTS_PRECACHE_CONTENT_PRECACHE_MANAGER_FACTORY_H_
+
+#include "base/basictypes.h"
+#include "base/memory/singleton.h"
+#include "components/browser_context_keyed_service/browser_context_keyed_service_factory.h"
+
+namespace content {
+class BrowserContext;
+}
+
+namespace precache {
+
+class PrecacheManager;
+
+class PrecacheManagerFactory : public BrowserContextKeyedServiceFactory {
+ public:
+ static PrecacheManager* GetForBrowserContext(
+ content::BrowserContext* browser_context);
+ static PrecacheManagerFactory* GetInstance();
+
+ private:
+ friend struct DefaultSingletonTraits<PrecacheManagerFactory>;
+
+ PrecacheManagerFactory();
+ virtual ~PrecacheManagerFactory();
+
+ // RefcountedBrowserContextKeyedServiceFactory:
+ virtual BrowserContextKeyedService* BuildServiceInstanceFor(
+ content::BrowserContext* browser_context) const OVERRIDE;
+
+ DISALLOW_COPY_AND_ASSIGN(PrecacheManagerFactory);
+};
+
+} // namespace precache
+
+#endif // COMPONENTS_PRECACHE_CONTENT_PRECACHE_MANAGER_FACTORY_H_

Powered by Google App Engine
This is Rietveld 408576698