BookmarkManager: Fix 'new folder text field size changes on clicking it' issue.
[chromium-blink-merge.git] / chrome / browser / favicon / large_icon_service_factory.h
blobdb5a1672bbcd21e910f063e741786557f440a201
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"
10 namespace base {
11 template <typename T> struct DefaultSingletonTraits;
14 namespace content {
15 class BrowserContext;
18 namespace favicon {
19 class LargeIconService;
22 // Singleton that owns all LargeIconService and associates them with
23 // BrowserContext instances.
24 class LargeIconServiceFactory : public BrowserContextKeyedServiceFactory {
25 public:
26 static favicon::LargeIconService* GetForBrowserContext(
27 content::BrowserContext* context);
29 static LargeIconServiceFactory* GetInstance();
31 private:
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_