BookmarkManager: Fix 'new folder text field size changes on clicking it' issue.
[chromium-blink-merge.git] / chrome / browser / favicon / large_icon_service_factory.cc
blob256206406cdd92293878aa9f09a7af4c450fddb2
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 #include "chrome/browser/favicon/large_icon_service_factory.h"
7 #include "base/memory/singleton.h"
8 #include "chrome/browser/favicon/favicon_service_factory.h"
9 #include "chrome/browser/profiles/profile.h"
10 #include "components/favicon/core/favicon_service.h"
11 #include "components/favicon/core/large_icon_service.h"
12 #include "components/keyed_service/content/browser_context_dependency_manager.h"
13 #include "content/public/browser/browser_context.h"
14 #include "content/public/browser/browser_thread.h"
16 // static
17 favicon::LargeIconService* LargeIconServiceFactory::GetForBrowserContext(
18 content::BrowserContext* context) {
19 return static_cast<favicon::LargeIconService*>(
20 GetInstance()->GetServiceForBrowserContext(context, true));
23 // static
24 LargeIconServiceFactory* LargeIconServiceFactory::GetInstance() {
25 return base::Singleton<LargeIconServiceFactory>::get();
28 LargeIconServiceFactory::LargeIconServiceFactory()
29 : BrowserContextKeyedServiceFactory(
30 "LargeIconService",
31 BrowserContextDependencyManager::GetInstance()) {
32 DependsOn(FaviconServiceFactory::GetInstance());
35 LargeIconServiceFactory::~LargeIconServiceFactory() {}
37 KeyedService* LargeIconServiceFactory::BuildServiceInstanceFor(
38 content::BrowserContext* context) const {
39 favicon::FaviconService* favicon_service =
40 FaviconServiceFactory::GetForProfile(Profile::FromBrowserContext(context),
41 ServiceAccessType::EXPLICIT_ACCESS);
42 return new favicon::LargeIconService(
43 favicon_service, content::BrowserThread::GetBlockingPool()
44 ->GetTaskRunnerWithShutdownBehavior(
45 base::SequencedWorkerPool::SKIP_ON_SHUTDOWN));
48 bool LargeIconServiceFactory::ServiceIsNULLWhileTesting() const {
49 return true;