1 // Copyright 2014 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file.
5 #ifndef CHROME_BROWSER_PREDICTORS_RESOURCE_PREFETCH_PREDICTOR_FACTORY_H_
6 #define CHROME_BROWSER_PREDICTORS_RESOURCE_PREFETCH_PREDICTOR_FACTORY_H_
8 #include "base/basictypes.h"
9 #include "base/memory/singleton.h"
10 #include "components/keyed_service/content/browser_context_keyed_service_factory.h"
12 namespace predictors
{
14 class ResourcePrefetchPredictor
;
16 class ResourcePrefetchPredictorFactory
17 : public BrowserContextKeyedServiceFactory
{
19 static ResourcePrefetchPredictor
* GetForProfile(
20 content::BrowserContext
* context
);
21 static ResourcePrefetchPredictorFactory
* GetInstance();
24 friend struct DefaultSingletonTraits
<ResourcePrefetchPredictorFactory
>;
26 ResourcePrefetchPredictorFactory();
27 ~ResourcePrefetchPredictorFactory() override
;
29 // RefcountedBrowserContextKeyedServiceFactory:
30 KeyedService
* BuildServiceInstanceFor(
31 content::BrowserContext
* context
) const override
;
33 DISALLOW_COPY_AND_ASSIGN(ResourcePrefetchPredictorFactory
);
36 } // namespace predictors
38 #endif // CHROME_BROWSER_PREDICTORS_RESOURCE_PREFETCH_PREDICTOR_FACTORY_H_