blob: 51f77e8df6877b6fcf60da567f4ef07be4f1a743 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
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/keyed_service/content/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();
// BrowserContextKeyedServiceFactory:
virtual KeyedService* BuildServiceInstanceFor(
content::BrowserContext* browser_context) const override;
DISALLOW_COPY_AND_ASSIGN(PrecacheManagerFactory);
};
} // namespace precache
#endif // COMPONENTS_PRECACHE_CONTENT_PRECACHE_MANAGER_FACTORY_H_
|