1 // Copyright 2015 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_FAVICON_LARGE_ICON_SERVICE_FACTORY_H_
6 #define CHROME_BROWSER_FAVICON_LARGE_ICON_SERVICE_FACTORY_H_
8 #include "components/keyed_service/content/browser_context_keyed_service_factory.h"
11 template <typename T
> struct DefaultSingletonTraits
;
19 class LargeIconService
;
22 // Singleton that owns all LargeIconService and associates them with
23 // BrowserContext instances.
24 class LargeIconServiceFactory
: public BrowserContextKeyedServiceFactory
{
26 static favicon::LargeIconService
* GetForBrowserContext(
27 content::BrowserContext
* context
);
29 static LargeIconServiceFactory
* GetInstance();
32 friend struct base::DefaultSingletonTraits
<LargeIconServiceFactory
>;
34 LargeIconServiceFactory();
35 ~LargeIconServiceFactory() override
;
37 // BrowserContextKeyedServiceFactory:
38 KeyedService
* BuildServiceInstanceFor(
39 content::BrowserContext
* context
) const override
;
40 bool ServiceIsNULLWhileTesting() const override
;
42 DISALLOW_COPY_AND_ASSIGN(LargeIconServiceFactory
);
45 #endif // CHROME_BROWSER_FAVICON_LARGE_ICON_SERVICE_FACTORY_H_