| 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 "ios/chrome/browser/favicon/ios_chrome_large_icon_service_factory.h" | 5 #include "ios/chrome/browser/favicon/ios_chrome_large_icon_service_factory.h" |
| 6 | 6 |
| 7 #include "base/memory/ptr_util.h" | 7 #include "base/memory/ptr_util.h" |
| 8 #include "base/memory/singleton.h" | 8 #include "base/memory/singleton.h" |
| 9 #include "base/threading/sequenced_worker_pool.h" | 9 #include "base/threading/sequenced_worker_pool.h" |
| 10 #include "base/threading/thread_task_runner_handle.h" | 10 #include "base/threading/thread_task_runner_handle.h" |
| 11 #include "components/favicon/core/large_icon_service.h" | 11 #include "components/favicon/core/large_icon_service.h" |
| 12 #include "components/image_fetcher/core/image_fetcher_impl.h" |
| 13 #include "components/image_fetcher/ios/ios_image_decoder_impl.h" |
| 12 #include "components/keyed_service/core/service_access_type.h" | 14 #include "components/keyed_service/core/service_access_type.h" |
| 13 #include "components/keyed_service/ios/browser_state_dependency_manager.h" | 15 #include "components/keyed_service/ios/browser_state_dependency_manager.h" |
| 14 #include "ios/chrome/browser/browser_state/browser_state_otr_helper.h" | 16 #include "ios/chrome/browser/browser_state/browser_state_otr_helper.h" |
| 15 #include "ios/chrome/browser/browser_state/chrome_browser_state.h" | 17 #include "ios/chrome/browser/browser_state/chrome_browser_state.h" |
| 16 #include "ios/chrome/browser/favicon/favicon_service_factory.h" | 18 #include "ios/chrome/browser/favicon/favicon_service_factory.h" |
| 17 #include "ios/web/public/web_thread.h" | 19 #include "ios/web/public/web_thread.h" |
| 18 | 20 |
| 19 // static | 21 // static |
| 20 favicon::LargeIconService* IOSChromeLargeIconServiceFactory::GetForBrowserState( | 22 favicon::LargeIconService* IOSChromeLargeIconServiceFactory::GetForBrowserState( |
| 21 ios::ChromeBrowserState* browser_state) { | 23 ios::ChromeBrowserState* browser_state) { |
| (...skipping 14 matching lines...) Expand all Loading... |
| 36 DependsOn(ios::FaviconServiceFactory::GetInstance()); | 38 DependsOn(ios::FaviconServiceFactory::GetInstance()); |
| 37 } | 39 } |
| 38 | 40 |
| 39 IOSChromeLargeIconServiceFactory::~IOSChromeLargeIconServiceFactory() {} | 41 IOSChromeLargeIconServiceFactory::~IOSChromeLargeIconServiceFactory() {} |
| 40 | 42 |
| 41 std::unique_ptr<KeyedService> | 43 std::unique_ptr<KeyedService> |
| 42 IOSChromeLargeIconServiceFactory::BuildServiceInstanceFor( | 44 IOSChromeLargeIconServiceFactory::BuildServiceInstanceFor( |
| 43 web::BrowserState* context) const { | 45 web::BrowserState* context) const { |
| 44 ios::ChromeBrowserState* browser_state = | 46 ios::ChromeBrowserState* browser_state = |
| 45 ios::ChromeBrowserState::FromBrowserState(context); | 47 ios::ChromeBrowserState::FromBrowserState(context); |
| 48 base::SequencedWorkerPool* sequenced_worker_pool = |
| 49 web::WebThread::GetBlockingPool(); |
| 46 | 50 |
| 47 return base::MakeUnique<favicon::LargeIconService>( | 51 return base::MakeUnique<favicon::LargeIconService>( |
| 48 ios::FaviconServiceFactory::GetForBrowserState( | 52 ios::FaviconServiceFactory::GetForBrowserState( |
| 49 browser_state, ServiceAccessType::EXPLICIT_ACCESS), | 53 browser_state, ServiceAccessType::EXPLICIT_ACCESS), |
| 50 web::WebThread::GetBlockingPool()); | 54 sequenced_worker_pool, |
| 55 base::MakeUnique<image_fetcher::ImageFetcherImpl>( |
| 56 image_fetcher::CreateIOSImageDecoder(sequenced_worker_pool), |
| 57 browser_state->GetRequestContext())); |
| 51 } | 58 } |
| 52 | 59 |
| 53 web::BrowserState* IOSChromeLargeIconServiceFactory::GetBrowserStateToUse( | 60 web::BrowserState* IOSChromeLargeIconServiceFactory::GetBrowserStateToUse( |
| 54 web::BrowserState* context) const { | 61 web::BrowserState* context) const { |
| 55 return GetBrowserStateOwnInstanceInIncognito(context); | 62 return GetBrowserStateOwnInstanceInIncognito(context); |
| 56 } | 63 } |
| 57 | 64 |
| 58 bool IOSChromeLargeIconServiceFactory::ServiceIsNULLWhileTesting() const { | 65 bool IOSChromeLargeIconServiceFactory::ServiceIsNULLWhileTesting() const { |
| 59 return true; | 66 return true; |
| 60 } | 67 } |
| OLD | NEW |