Chromium Code Reviews| 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/large_icon_cache_factory.h" | |
| 6 | |
| 7 #include "base/memory/singleton.h" | |
| 8 #include "components/keyed_service/ios/browser_state_dependency_manager.h" | |
| 9 #include "ios/chrome/browser/browser_state/browser_state_otr_helper.h" | |
| 10 #include "ios/chrome/browser/favicon/large_icon_cache.h" | |
| 11 #include "ios/public/provider/chrome/browser/browser_state/chrome_browser_state. h" | |
| 12 | |
| 13 // static | |
| 14 LargeIconCache* LargeIconCacheFactory::GetForBrowserState( | |
| 15 ios::ChromeBrowserState* browser_state) { | |
| 16 return static_cast<LargeIconCache*>( | |
| 17 GetInstance()->GetServiceForBrowserState(browser_state, true)); | |
| 18 } | |
| 19 | |
| 20 // static | |
| 21 LargeIconCacheFactory* LargeIconCacheFactory::GetInstance() { | |
| 22 return base::Singleton<LargeIconCacheFactory>::get(); | |
|
sdefresne
2015/10/30 09:27:19
Please put a call to this method in ios/chrome/bro
justincohen
2015/10/30 11:59:21
Done.
| |
| 23 } | |
| 24 | |
| 25 LargeIconCacheFactory::LargeIconCacheFactory() | |
| 26 : BrowserStateKeyedServiceFactory( | |
| 27 "LargeIconCache", | |
| 28 BrowserStateDependencyManager::GetInstance()) {} | |
| 29 | |
| 30 LargeIconCacheFactory::~LargeIconCacheFactory() {} | |
| 31 | |
| 32 scoped_ptr<KeyedService> LargeIconCacheFactory::BuildServiceInstanceFor( | |
| 33 web::BrowserState* context) const { | |
| 34 return make_scoped_ptr(new LargeIconCache()); | |
|
sdefresne
2015/10/30 09:27:19
nit: return make_scoped_ptr(new LargeIconCache);
justincohen
2015/10/30 11:59:21
Done.
| |
| 35 } | |
| 36 | |
| 37 web::BrowserState* LargeIconCacheFactory::GetBrowserStateToUse( | |
| 38 web::BrowserState* context) const { | |
| 39 return GetBrowserStateOwnInstanceInIncognito(context); | |
| 40 } | |
| OLD | NEW |