| OLD | NEW |
| 1 // Copyright 2013 The Chromium Authors. All rights reserved. | 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 | 2 // Use of this source code is governed by a BSD-style license that can be |
| 3 // found in the LICENSE file. | 3 // found in the LICENSE file. |
| 4 | 4 |
| 5 #include "apps/app_lifetime_monitor_factory.h" | 5 #include "apps/app_lifetime_monitor_factory.h" |
| 6 | 6 |
| 7 #include "apps/app_lifetime_monitor.h" | 7 #include "apps/app_lifetime_monitor.h" |
| 8 #include "chrome/browser/profiles/profile.h" | |
| 9 #include "components/keyed_service/content/browser_context_dependency_manager.h" | 8 #include "components/keyed_service/content/browser_context_dependency_manager.h" |
| 9 #include "content/public/browser/browser_context.h" |
| 10 #include "extensions/browser/app_window/app_window_registry.h" | 10 #include "extensions/browser/app_window/app_window_registry.h" |
| 11 #include "extensions/browser/extensions_browser_client.h" | 11 #include "extensions/browser/extensions_browser_client.h" |
| 12 | 12 |
| 13 namespace apps { | 13 namespace apps { |
| 14 | 14 |
| 15 // static | 15 // static |
| 16 AppLifetimeMonitor* AppLifetimeMonitorFactory::GetForProfile(Profile* profile) { | 16 AppLifetimeMonitor* AppLifetimeMonitorFactory::GetForBrowserContext( |
| 17 content::BrowserContext* context) { |
| 17 return static_cast<AppLifetimeMonitor*>( | 18 return static_cast<AppLifetimeMonitor*>( |
| 18 GetInstance()->GetServiceForBrowserContext(profile, false)); | 19 GetInstance()->GetServiceForBrowserContext(context, false)); |
| 19 } | 20 } |
| 20 | 21 |
| 21 AppLifetimeMonitorFactory* AppLifetimeMonitorFactory::GetInstance() { | 22 AppLifetimeMonitorFactory* AppLifetimeMonitorFactory::GetInstance() { |
| 22 return base::Singleton<AppLifetimeMonitorFactory>::get(); | 23 return base::Singleton<AppLifetimeMonitorFactory>::get(); |
| 23 } | 24 } |
| 24 | 25 |
| 25 AppLifetimeMonitorFactory::AppLifetimeMonitorFactory() | 26 AppLifetimeMonitorFactory::AppLifetimeMonitorFactory() |
| 26 : BrowserContextKeyedServiceFactory( | 27 : BrowserContextKeyedServiceFactory( |
| 27 "AppLifetimeMonitor", | 28 "AppLifetimeMonitor", |
| 28 BrowserContextDependencyManager::GetInstance()) { | 29 BrowserContextDependencyManager::GetInstance()) { |
| 29 DependsOn(extensions::AppWindowRegistry::Factory::GetInstance()); | 30 DependsOn(extensions::AppWindowRegistry::Factory::GetInstance()); |
| 30 } | 31 } |
| 31 | 32 |
| 32 AppLifetimeMonitorFactory::~AppLifetimeMonitorFactory() {} | 33 AppLifetimeMonitorFactory::~AppLifetimeMonitorFactory() {} |
| 33 | 34 |
| 34 KeyedService* AppLifetimeMonitorFactory::BuildServiceInstanceFor( | 35 KeyedService* AppLifetimeMonitorFactory::BuildServiceInstanceFor( |
| 35 content::BrowserContext* profile) const { | 36 content::BrowserContext* context) const { |
| 36 return new AppLifetimeMonitor(static_cast<Profile*>(profile)); | 37 return new AppLifetimeMonitor(context); |
| 37 } | 38 } |
| 38 | 39 |
| 39 bool AppLifetimeMonitorFactory::ServiceIsCreatedWithBrowserContext() const { | 40 bool AppLifetimeMonitorFactory::ServiceIsCreatedWithBrowserContext() const { |
| 40 return true; | 41 return true; |
| 41 } | 42 } |
| 42 | 43 |
| 43 content::BrowserContext* AppLifetimeMonitorFactory::GetBrowserContextToUse( | 44 content::BrowserContext* AppLifetimeMonitorFactory::GetBrowserContextToUse( |
| 44 content::BrowserContext* context) const { | 45 content::BrowserContext* context) const { |
| 45 return extensions::ExtensionsBrowserClient::Get()-> | 46 return extensions::ExtensionsBrowserClient::Get()-> |
| 46 GetOriginalContext(context); | 47 GetOriginalContext(context); |
| 47 } | 48 } |
| 48 | 49 |
| 49 } // namespace apps | 50 } // namespace apps |
| OLD | NEW |