| OLD | NEW |
| 1 // Copyright 2015 The Chromium Authors. All rights reserved. | 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 | 2 // Use of this source code is governed by a BSD-style license that can be |
| 3 // found in the LICENSE file. | 3 // found in the LICENSE file. |
| 4 | 4 |
| 5 #include "chrome/browser/favicon/large_icon_service_factory.h" | 5 #include "chrome/browser/favicon/large_icon_service_factory.h" |
| 6 | 6 |
| 7 #include "base/memory/singleton.h" | 7 #include "base/memory/singleton.h" |
| 8 #include "base/threading/sequenced_worker_pool.h" | 8 #include "base/threading/sequenced_worker_pool.h" |
| 9 #include "chrome/browser/favicon/favicon_service_factory.h" | 9 #include "chrome/browser/favicon/favicon_service_factory.h" |
| 10 #include "chrome/browser/profiles/incognito_helpers.h" | 10 #include "chrome/browser/profiles/incognito_helpers.h" |
| 11 #include "chrome/browser/profiles/profile.h" | 11 #include "chrome/browser/profiles/profile.h" |
| 12 #include "chrome/browser/search/suggestions/image_decoder_impl.h" | |
| 13 #include "components/favicon/core/favicon_service.h" | 12 #include "components/favicon/core/favicon_service.h" |
| 14 #include "components/favicon/core/large_icon_service.h" | 13 #include "components/favicon/core/large_icon_service.h" |
| 14 #include "components/image_fetcher/content/image_decoder_impl.h" |
| 15 #include "components/image_fetcher/core/image_decoder.h" | 15 #include "components/image_fetcher/core/image_decoder.h" |
| 16 #include "components/image_fetcher/core/image_fetcher_impl.h" | 16 #include "components/image_fetcher/core/image_fetcher_impl.h" |
| 17 #include "components/keyed_service/content/browser_context_dependency_manager.h" | 17 #include "components/keyed_service/content/browser_context_dependency_manager.h" |
| 18 #include "content/public/browser/browser_context.h" | 18 #include "content/public/browser/browser_context.h" |
| 19 #include "content/public/browser/browser_thread.h" | 19 #include "content/public/browser/browser_thread.h" |
| 20 | 20 |
| 21 // static | 21 // static |
| 22 favicon::LargeIconService* LargeIconServiceFactory::GetForBrowserContext( | 22 favicon::LargeIconService* LargeIconServiceFactory::GetForBrowserContext( |
| 23 content::BrowserContext* context) { | 23 content::BrowserContext* context) { |
| 24 return static_cast<favicon::LargeIconService*>( | 24 return static_cast<favicon::LargeIconService*>( |
| (...skipping 24 matching lines...) Expand all Loading... |
| 49 Profile* profile = Profile::FromBrowserContext(context); | 49 Profile* profile = Profile::FromBrowserContext(context); |
| 50 favicon::FaviconService* favicon_service = | 50 favicon::FaviconService* favicon_service = |
| 51 FaviconServiceFactory::GetForProfile(profile, | 51 FaviconServiceFactory::GetForProfile(profile, |
| 52 ServiceAccessType::EXPLICIT_ACCESS); | 52 ServiceAccessType::EXPLICIT_ACCESS); |
| 53 return new favicon::LargeIconService( | 53 return new favicon::LargeIconService( |
| 54 favicon_service, | 54 favicon_service, |
| 55 content::BrowserThread::GetBlockingPool() | 55 content::BrowserThread::GetBlockingPool() |
| 56 ->GetTaskRunnerWithShutdownBehavior( | 56 ->GetTaskRunnerWithShutdownBehavior( |
| 57 base::SequencedWorkerPool::SKIP_ON_SHUTDOWN), | 57 base::SequencedWorkerPool::SKIP_ON_SHUTDOWN), |
| 58 base::MakeUnique<image_fetcher::ImageFetcherImpl>( | 58 base::MakeUnique<image_fetcher::ImageFetcherImpl>( |
| 59 base::MakeUnique<suggestions::ImageDecoderImpl>(), | 59 base::MakeUnique<image_fetcher::ImageDecoderImpl>(), |
| 60 profile->GetRequestContext())); | 60 profile->GetRequestContext())); |
| 61 } | 61 } |
| 62 | 62 |
| 63 bool LargeIconServiceFactory::ServiceIsNULLWhileTesting() const { | 63 bool LargeIconServiceFactory::ServiceIsNULLWhileTesting() const { |
| 64 return true; | 64 return true; |
| 65 } | 65 } |
| OLD | NEW |