1 // Copyright (c) 2012 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_PRERENDER_PRERENDER_LINK_MANAGER_FACTORY_H_
6 #define CHROME_BROWSER_PRERENDER_PRERENDER_LINK_MANAGER_FACTORY_H_
8 #include "base/compiler_specific.h"
9 #include "base/memory/singleton.h"
10 #include "components/keyed_service/content/browser_context_keyed_service_factory.h"
16 class PrerenderLinkManager
;
18 class PrerenderLinkManagerFactory
: public BrowserContextKeyedServiceFactory
{
20 static PrerenderLinkManager
* GetForProfile(Profile
* profile
);
21 static PrerenderLinkManagerFactory
* GetInstance();
24 friend struct DefaultSingletonTraits
<PrerenderLinkManagerFactory
>;
26 PrerenderLinkManagerFactory();
27 ~PrerenderLinkManagerFactory() override
{}
29 KeyedService
* BuildServiceInstanceFor(
30 content::BrowserContext
* profile
) const override
;
31 content::BrowserContext
* GetBrowserContextToUse(
32 content::BrowserContext
* context
) const override
;
35 } // namespace prerender
37 #endif // CHROME_BROWSER_PRERENDER_PRERENDER_LINK_MANAGER_FACTORY_H_