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 "chrome/browser/favicon/large_icon_service_factory.h" | |
6 | |
7 #include "base/memory/singleton.h" | |
8 #include "chrome/browser/favicon/favicon_service_factory.h" | |
9 #include "chrome/browser/profiles/profile.h" | |
10 #include "components/favicon/core/favicon_service.h" | |
11 #include "components/favicon/core/large_icon_service.h" | |
12 #include "components/keyed_service/content/browser_context_dependency_manager.h" | |
13 #include "content/public/browser/browser_context.h" | |
14 | |
15 // static | |
16 favicon::LargeIconService* LargeIconServiceFactory::GetForBrowserContext( | |
17 content::BrowserContext* context) { | |
18 return static_cast<favicon::LargeIconService*>( | |
19 GetInstance()->GetServiceForBrowserContext(context, true)); | |
20 } | |
21 | |
22 // static | |
23 LargeIconServiceFactory* LargeIconServiceFactory::GetInstance() { | |
24 return Singleton<LargeIconServiceFactory>::get(); | |
25 } | |
26 | |
27 LargeIconServiceFactory::LargeIconServiceFactory() | |
28 : BrowserContextKeyedServiceFactory( | |
29 "LargeIconService", | |
30 BrowserContextDependencyManager::GetInstance()) { | |
31 DependsOn(FaviconServiceFactory::GetInstance()); | |
32 } | |
33 | |
34 LargeIconServiceFactory::~LargeIconServiceFactory() {} | |
35 | |
36 KeyedService* LargeIconServiceFactory::BuildServiceInstanceFor( | |
37 content::BrowserContext* context) const { | |
38 favicon::FaviconService* favicon_service = | |
39 FaviconServiceFactory::GetForProfile(Profile::FromBrowserContext(context), | |
huangs
2015/04/20 19:50:25
Perhaps in favicon_service_factory.cc, add
// sta
beaudoin
2015/04/21 00:15:38
Done.
pkotwicz
2015/04/21 20:13:28
Ping me if you want to discuss some more. I notice
beaudoin
2015/04/21 20:24:05
NP. I think this is better.
| |
40 ServiceAccessType::EXPLICIT_ACCESS); | |
41 return new favicon::LargeIconService(favicon_service); | |
42 } | |
43 | |
44 bool LargeIconServiceFactory::ServiceIsNULLWhileTesting() const { | |
45 return true; | |
46 } | |
OLD | NEW |