Chromium Code Reviews| 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/favicon_service_factory.h" | 5 #include "ios/chrome/browser/favicon/favicon_service_factory.h" |
| 6 | 6 |
| 7 #include "base/memory/singleton.h" | 7 #include "base/memory/singleton.h" |
| 8 #include "components/favicon/core/favicon_service.h" | 8 #include "components/favicon/core/favicon_service.h" |
| 9 #include "components/keyed_service/core/service_access_type.h" | 9 #include "components/keyed_service/core/service_access_type.h" |
| 10 #include "components/keyed_service/ios/browser_state_dependency_manager.h" | 10 #include "components/keyed_service/ios/browser_state_dependency_manager.h" |
| 11 #include "ios/chrome/browser/favicon/favicon_client_impl.h" | 11 #include "ios/chrome/browser/favicon/favicon_client_impl.h" |
| 12 #include "ios/chrome/browser/history/history_service_factory.h" | 12 #include "ios/chrome/browser/history/history_service_factory.h" |
| 13 #include "ios/public/provider/chrome/browser/browser_state/chrome_browser_state. h" | 13 #include "ios/public/provider/chrome/browser/browser_state/chrome_browser_state. h" |
| 14 | 14 |
| 15 namespace ios { | 15 namespace ios { |
| 16 | 16 |
| 17 scoped_ptr<KeyedService> BuildFaviconService(web::BrowserState* context) { | |
|
sdefresne
2015/11/21 01:52:03
Please put in an anonymous namespace:
namespace i
| |
| 18 ios::ChromeBrowserState* browser_state = | |
| 19 ios::ChromeBrowserState::FromBrowserState(context); | |
| 20 return make_scoped_ptr(new favicon::FaviconService( | |
| 21 make_scoped_ptr(new FaviconClientImpl(browser_state)), | |
| 22 ios::HistoryServiceFactory::GetForBrowserState( | |
| 23 browser_state, ServiceAccessType::EXPLICIT_ACCESS))); | |
| 24 } | |
| 25 | |
| 17 // static | 26 // static |
| 18 favicon::FaviconService* FaviconServiceFactory::GetForBrowserState( | 27 favicon::FaviconService* FaviconServiceFactory::GetForBrowserState( |
| 19 ios::ChromeBrowserState* browser_state, | 28 ios::ChromeBrowserState* browser_state, |
| 20 ServiceAccessType access_type) { | 29 ServiceAccessType access_type) { |
| 21 if (!browser_state->IsOffTheRecord()) { | 30 if (!browser_state->IsOffTheRecord()) { |
| 22 return static_cast<favicon::FaviconService*>( | 31 return static_cast<favicon::FaviconService*>( |
| 23 GetInstance()->GetServiceForBrowserState(browser_state, true)); | 32 GetInstance()->GetServiceForBrowserState(browser_state, true)); |
| 24 } else if (access_type == ServiceAccessType::EXPLICIT_ACCESS) { | 33 } else if (access_type == ServiceAccessType::EXPLICIT_ACCESS) { |
| 25 return static_cast<favicon::FaviconService*>( | 34 return static_cast<favicon::FaviconService*>( |
| 26 GetInstance()->GetServiceForBrowserState( | 35 GetInstance()->GetServiceForBrowserState( |
| (...skipping 15 matching lines...) Expand all Loading... | |
| 42 "FaviconService", | 51 "FaviconService", |
| 43 BrowserStateDependencyManager::GetInstance()) { | 52 BrowserStateDependencyManager::GetInstance()) { |
| 44 DependsOn(ios::HistoryServiceFactory::GetInstance()); | 53 DependsOn(ios::HistoryServiceFactory::GetInstance()); |
| 45 } | 54 } |
| 46 | 55 |
| 47 FaviconServiceFactory::~FaviconServiceFactory() { | 56 FaviconServiceFactory::~FaviconServiceFactory() { |
| 48 } | 57 } |
| 49 | 58 |
| 50 scoped_ptr<KeyedService> FaviconServiceFactory::BuildServiceInstanceFor( | 59 scoped_ptr<KeyedService> FaviconServiceFactory::BuildServiceInstanceFor( |
| 51 web::BrowserState* context) const { | 60 web::BrowserState* context) const { |
| 52 ios::ChromeBrowserState* browser_state = | 61 return BuildFaviconService(context); |
| 53 ios::ChromeBrowserState::FromBrowserState(context); | |
| 54 return make_scoped_ptr(new favicon::FaviconService( | |
| 55 make_scoped_ptr(new FaviconClientImpl(browser_state)), | |
| 56 ios::HistoryServiceFactory::GetForBrowserState( | |
| 57 browser_state, ServiceAccessType::EXPLICIT_ACCESS))); | |
| 58 } | 62 } |
| 59 | 63 |
| 60 bool FaviconServiceFactory::ServiceIsNULLWhileTesting() const { | 64 bool FaviconServiceFactory::ServiceIsNULLWhileTesting() const { |
|
sdefresne
2015/11/21 01:52:03
Could you investigate whether removing this overri
| |
| 61 return true; | 65 return true; |
| 62 } | 66 } |
| 63 | 67 |
| 68 // Static | |
|
sdefresne
2015/11/21 01:52:03
s/Static/static/
| |
| 69 BrowserStateKeyedServiceFactory::TestingFactoryFunction | |
| 70 FaviconServiceFactory::GetDefaultFactory() { | |
| 71 return &BuildFaviconService; | |
| 72 } | |
| 73 | |
| 64 } // namespace ios | 74 } // namespace ios |
| OLD | NEW |