Temporarily re-enabling SizeAfterPrefChange test with traces (this time for Linux...
[chromium-blink-merge.git] / chrome / browser / apps / ephemeral_app_service_factory.cc
blob143c47daf8f3802c35afa861ad2518b8456509c4
1 // Copyright 2013 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/apps/ephemeral_app_service_factory.h"
7 #include "chrome/browser/apps/ephemeral_app_service.h"
8 #include "chrome/browser/profiles/profile.h"
9 #include "components/keyed_service/content/browser_context_dependency_manager.h"
10 #include "extensions/browser/extension_system_provider.h"
11 #include "extensions/browser/extensions_browser_client.h"
13 using extensions::ExtensionsBrowserClient;
15 // static
16 EphemeralAppService*
17 EphemeralAppServiceFactory::GetForProfile(Profile* profile) {
18 return static_cast<EphemeralAppService*>(
19 GetInstance()->GetServiceForBrowserContext(profile, true));
22 // static
23 EphemeralAppServiceFactory* EphemeralAppServiceFactory::GetInstance() {
24 return Singleton<EphemeralAppServiceFactory>::get();
27 EphemeralAppServiceFactory::EphemeralAppServiceFactory()
28 : BrowserContextKeyedServiceFactory(
29 "EphemeralAppService",
30 BrowserContextDependencyManager::GetInstance()) {
31 DependsOn(ExtensionsBrowserClient::Get()->GetExtensionSystemFactory());
34 EphemeralAppServiceFactory::~EphemeralAppServiceFactory() {
37 KeyedService* EphemeralAppServiceFactory::BuildServiceInstanceFor(
38 content::BrowserContext* context) const {
39 return new EphemeralAppService(Profile::FromBrowserContext(context));
42 content::BrowserContext* EphemeralAppServiceFactory::GetBrowserContextToUse(
43 content::BrowserContext* context) const {
44 return ExtensionsBrowserClient::Get()->GetOriginalContext(context);
47 bool EphemeralAppServiceFactory::ServiceIsCreatedWithBrowserContext() const {
48 return true;
51 bool EphemeralAppServiceFactory::ServiceIsNULLWhileTesting() const {
52 return true;