| OLD | NEW |
| (Empty) | |
| 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. |
| 4 |
| 5 #include "ios/chrome/browser/favicon/ios_chrome_large_icon_service_factory.h" |
| 6 |
| 7 #include "base/memory/singleton.h" |
| 8 #include "base/thread_task_runner_handle.h" |
| 9 #include "components/favicon/core/large_icon_service.h" |
| 10 #include "components/keyed_service/core/service_access_type.h" |
| 11 #include "components/keyed_service/ios/browser_state_dependency_manager.h" |
| 12 #include "ios/chrome/browser/browser_state/browser_state_otr_helper.h" |
| 13 #include "ios/chrome/browser/favicon/favicon_service_factory.h" |
| 14 #include "ios/public/provider/chrome/browser/browser_state/chrome_browser_state.
h" |
| 15 #include "ios/web/public/web_thread.h" |
| 16 |
| 17 // static |
| 18 favicon::LargeIconService* IOSChromeLargeIconServiceFactory::GetForBrowserState( |
| 19 ios::ChromeBrowserState* browser_state) { |
| 20 return static_cast<favicon::LargeIconService*>( |
| 21 GetInstance()->GetServiceForBrowserState(browser_state, true)); |
| 22 } |
| 23 |
| 24 // static |
| 25 IOSChromeLargeIconServiceFactory* |
| 26 IOSChromeLargeIconServiceFactory::GetInstance() { |
| 27 return base::Singleton<IOSChromeLargeIconServiceFactory>::get(); |
| 28 } |
| 29 |
| 30 IOSChromeLargeIconServiceFactory::IOSChromeLargeIconServiceFactory() |
| 31 : BrowserStateKeyedServiceFactory( |
| 32 "LargeIconService", |
| 33 BrowserStateDependencyManager::GetInstance()) {} |
| 34 |
| 35 IOSChromeLargeIconServiceFactory::~IOSChromeLargeIconServiceFactory() {} |
| 36 |
| 37 scoped_ptr<KeyedService> |
| 38 IOSChromeLargeIconServiceFactory::BuildServiceInstanceFor( |
| 39 web::BrowserState* context) const { |
| 40 ios::ChromeBrowserState* browser_state = |
| 41 ios::ChromeBrowserState::FromBrowserState(context); |
| 42 |
| 43 return make_scoped_ptr(new favicon::LargeIconService( |
| 44 ios::FaviconServiceFactory::GetForBrowserState( |
| 45 browser_state, ServiceAccessType::EXPLICIT_ACCESS), |
| 46 web::WebThread::GetBlockingPool())); |
| 47 } |
| 48 |
| 49 web::BrowserState* IOSChromeLargeIconServiceFactory::GetBrowserStateToUse( |
| 50 web::BrowserState* context) const { |
| 51 return GetBrowserStateOwnInstanceInIncognito(context); |
| 52 } |
| OLD | NEW |