OLD | NEW |
| (Empty) |
1 // Copyright 2014 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/chromeos/file_system_provider/service_factory.h" | |
6 | |
7 #include "chrome/browser/chromeos/file_system_provider/service.h" | |
8 #include "chrome/browser/extensions/extension_system_factory.h" | |
9 #include "chrome/browser/profiles/incognito_helpers.h" | |
10 #include "components/keyed_service/content/browser_context_dependency_manager.h" | |
11 #include "extensions/browser/extension_registry.h" | |
12 #include "extensions/browser/extension_registry_factory.h" | |
13 | |
14 namespace chromeos { | |
15 namespace file_system_provider { | |
16 | |
17 // static | |
18 Service* ServiceFactory::Get(content::BrowserContext* context) { | |
19 return static_cast<Service*>( | |
20 GetInstance()->GetServiceForBrowserContext(context, true)); | |
21 } | |
22 | |
23 // static | |
24 Service* ServiceFactory::FindExisting(content::BrowserContext* context) { | |
25 return static_cast<Service*>( | |
26 GetInstance()->GetServiceForBrowserContext(context, false)); | |
27 } | |
28 | |
29 ServiceFactory* ServiceFactory::GetInstance() { | |
30 return Singleton<ServiceFactory>::get(); | |
31 } | |
32 | |
33 ServiceFactory::ServiceFactory() | |
34 : BrowserContextKeyedServiceFactory( | |
35 "Service", | |
36 BrowserContextDependencyManager::GetInstance()) { | |
37 DependsOn(extensions::ExtensionRegistryFactory::GetInstance()); | |
38 DependsOn(extensions::ExtensionSystemFactory::GetInstance()); | |
39 } | |
40 | |
41 ServiceFactory::~ServiceFactory() {} | |
42 | |
43 KeyedService* ServiceFactory::BuildServiceInstanceFor( | |
44 content::BrowserContext* profile) const { | |
45 return new Service( | |
46 Profile::FromBrowserContext(profile), | |
47 extensions::ExtensionRegistry::Get(Profile::FromBrowserContext(profile))); | |
48 } | |
49 | |
50 bool ServiceFactory::ServiceIsCreatedWithBrowserContext() const { return true; } | |
51 | |
52 content::BrowserContext* ServiceFactory::GetBrowserContextToUse( | |
53 content::BrowserContext* context) const { | |
54 return chrome::GetBrowserContextRedirectedInIncognito(context); | |
55 } | |
56 | |
57 } // namespace file_system_provider | |
58 } // namespace chromeos | |
OLD | NEW |