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_FALLBACK_ICON_SERVICE_FACTORY_H_
6 #define CHROME_BROWSER_FAVICON_FALLBACK_ICON_SERVICE_FACTORY_H_
8 #include "components/keyed_service/content/browser_context_keyed_service_factory.h"
10 template <typename T
> struct DefaultSingletonTraits
;
17 class FallbackIconService
;
20 // Singleton that owns all FallbackIconService and associates them with
21 // BrowserContext instances.
22 class FallbackIconServiceFactory
: public BrowserContextKeyedServiceFactory
{
24 static favicon::FallbackIconService
* GetForBrowserContext(
25 content::BrowserContext
* context
);
27 static FallbackIconServiceFactory
* GetInstance();
30 friend struct DefaultSingletonTraits
<FallbackIconServiceFactory
>;
32 FallbackIconServiceFactory();
33 ~FallbackIconServiceFactory() override
;
35 // BrowserContextKeyedServiceFactory:
36 KeyedService
* BuildServiceInstanceFor(
37 content::BrowserContext
* context
) const override
;
38 bool ServiceIsNULLWhileTesting() const override
;
40 DISALLOW_COPY_AND_ASSIGN(FallbackIconServiceFactory
);
43 #endif // CHROME_BROWSER_FAVICON_FALLBACK_ICON_SERVICE_FACTORY_H_