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.
5 #include "chrome/browser/chromeos/file_system_provider/service_factory.h"
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"
15 namespace file_system_provider
{
18 Service
* ServiceFactory::Get(content::BrowserContext
* context
) {
19 return static_cast<Service
*>(
20 GetInstance()->GetServiceForBrowserContext(context
, true));
24 Service
* ServiceFactory::FindExisting(content::BrowserContext
* context
) {
25 return static_cast<Service
*>(
26 GetInstance()->GetServiceForBrowserContext(context
, false));
29 ServiceFactory
* ServiceFactory::GetInstance() {
30 return Singleton
<ServiceFactory
>::get();
33 ServiceFactory::ServiceFactory()
34 : BrowserContextKeyedServiceFactory(
36 BrowserContextDependencyManager::GetInstance()) {
37 DependsOn(extensions::ExtensionRegistryFactory::GetInstance());
38 DependsOn(extensions::ExtensionSystemFactory::GetInstance());
41 ServiceFactory::~ServiceFactory() {}
43 KeyedService
* ServiceFactory::BuildServiceInstanceFor(
44 content::BrowserContext
* profile
) const {
45 return new Service(Profile::FromBrowserContext(profile
),
46 extensions::ExtensionRegistry::Get(profile
));
49 bool ServiceFactory::ServiceIsCreatedWithBrowserContext() const { return true; }
51 content::BrowserContext
* ServiceFactory::GetBrowserContextToUse(
52 content::BrowserContext
* context
) const {
53 return chrome::GetBrowserContextRedirectedInIncognito(context
);
56 } // namespace file_system_provider
57 } // namespace chromeos