| 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/thread_task_runner_handle.h" | 9 #include "base/threading/thread_task_runner_handle.h" |
| 10 #include "components/favicon/core/large_icon_service.h" | 10 #include "components/favicon/core/large_icon_service.h" |
| 11 #include "components/image_fetcher/image_fetcher_impl.h" |
| 11 #include "components/keyed_service/core/service_access_type.h" | 12 #include "components/keyed_service/core/service_access_type.h" |
| 12 #include "components/keyed_service/ios/browser_state_dependency_manager.h" | 13 #include "components/keyed_service/ios/browser_state_dependency_manager.h" |
| 13 #include "ios/chrome/browser/browser_state/browser_state_otr_helper.h" | 14 #include "ios/chrome/browser/browser_state/browser_state_otr_helper.h" |
| 14 #include "ios/chrome/browser/browser_state/chrome_browser_state.h" | 15 #include "ios/chrome/browser/browser_state/chrome_browser_state.h" |
| 15 #include "ios/chrome/browser/favicon/favicon_service_factory.h" | 16 #include "ios/chrome/browser/favicon/favicon_service_factory.h" |
| 17 #include "ios/chrome/browser/suggestions/ios_image_decoder_impl.h" |
| 16 #include "ios/web/public/web_thread.h" | 18 #include "ios/web/public/web_thread.h" |
| 17 | 19 |
| 18 // static | 20 // static |
| 19 favicon::LargeIconService* IOSChromeLargeIconServiceFactory::GetForBrowserState( | 21 favicon::LargeIconService* IOSChromeLargeIconServiceFactory::GetForBrowserState( |
| 20 ios::ChromeBrowserState* browser_state) { | 22 ios::ChromeBrowserState* browser_state) { |
| 21 return static_cast<favicon::LargeIconService*>( | 23 return static_cast<favicon::LargeIconService*>( |
| 22 GetInstance()->GetServiceForBrowserState(browser_state, true)); | 24 GetInstance()->GetServiceForBrowserState(browser_state, true)); |
| 23 } | 25 } |
| 24 | 26 |
| 25 // static | 27 // static |
| (...skipping 11 matching lines...) Expand all Loading... |
| 37 | 39 |
| 38 std::unique_ptr<KeyedService> | 40 std::unique_ptr<KeyedService> |
| 39 IOSChromeLargeIconServiceFactory::BuildServiceInstanceFor( | 41 IOSChromeLargeIconServiceFactory::BuildServiceInstanceFor( |
| 40 web::BrowserState* context) const { | 42 web::BrowserState* context) const { |
| 41 ios::ChromeBrowserState* browser_state = | 43 ios::ChromeBrowserState* browser_state = |
| 42 ios::ChromeBrowserState::FromBrowserState(context); | 44 ios::ChromeBrowserState::FromBrowserState(context); |
| 43 | 45 |
| 44 return base::MakeUnique<favicon::LargeIconService>( | 46 return base::MakeUnique<favicon::LargeIconService>( |
| 45 ios::FaviconServiceFactory::GetForBrowserState( | 47 ios::FaviconServiceFactory::GetForBrowserState( |
| 46 browser_state, ServiceAccessType::EXPLICIT_ACCESS), | 48 browser_state, ServiceAccessType::EXPLICIT_ACCESS), |
| 47 web::WebThread::GetBlockingPool()); | 49 web::WebThread::GetBlockingPool(), |
| 50 base::MakeUnique<image_fetcher::ImageFetcherImpl>( |
| 51 base::MakeUnique<suggestions::IOSImageDecoderImpl>(), |
| 52 browser_state->GetRequestContext())); |
| 48 } | 53 } |
| 49 | 54 |
| 50 web::BrowserState* IOSChromeLargeIconServiceFactory::GetBrowserStateToUse( | 55 web::BrowserState* IOSChromeLargeIconServiceFactory::GetBrowserStateToUse( |
| 51 web::BrowserState* context) const { | 56 web::BrowserState* context) const { |
| 52 return GetBrowserStateOwnInstanceInIncognito(context); | 57 return GetBrowserStateOwnInstanceInIncognito(context); |
| 53 } | 58 } |
| OLD | NEW |