| 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 #ifndef APPS_APP_LIFETIME_MONITOR_FACTORY_H_ | 5 #ifndef APPS_APP_LIFETIME_MONITOR_FACTORY_H_ |
| 6 #define APPS_APP_LIFETIME_MONITOR_FACTORY_H_ | 6 #define APPS_APP_LIFETIME_MONITOR_FACTORY_H_ |
| 7 | 7 |
| 8 #include "base/memory/singleton.h" | 8 #include "base/memory/singleton.h" |
| 9 #include "components/keyed_service/content/browser_context_keyed_service_factory
.h" | 9 #include "components/keyed_service/content/browser_context_keyed_service_factory
.h" |
| 10 | 10 |
| 11 class Profile; | 11 namespace content { |
| 12 class BrowserContext; |
| 13 } |
| 12 | 14 |
| 13 namespace apps { | 15 namespace apps { |
| 14 | 16 |
| 15 class AppLifetimeMonitor; | 17 class AppLifetimeMonitor; |
| 16 | 18 |
| 17 // Singleton that owns all AppLifetimeMonitors and associates them with | 19 // Singleton that owns all AppLifetimeMonitors and associates them with |
| 18 // Profiles. Listens for the Profile's destruction notification and cleans up | 20 // BrowserContexts. Listens for the BrowserContext's destruction notification |
| 19 // the associated AppLifetimeMonitor. | 21 // and cleans up the associated AppLifetimeMonitor. |
| 20 class AppLifetimeMonitorFactory : public BrowserContextKeyedServiceFactory { | 22 class AppLifetimeMonitorFactory : public BrowserContextKeyedServiceFactory { |
| 21 public: | 23 public: |
| 22 static AppLifetimeMonitor* GetForProfile(Profile* profile); | 24 static AppLifetimeMonitor* GetForBrowserContext( |
| 25 content::BrowserContext* context); |
| 23 | 26 |
| 24 static AppLifetimeMonitorFactory* GetInstance(); | 27 static AppLifetimeMonitorFactory* GetInstance(); |
| 25 | 28 |
| 26 private: | 29 private: |
| 27 friend struct base::DefaultSingletonTraits<AppLifetimeMonitorFactory>; | 30 friend struct base::DefaultSingletonTraits<AppLifetimeMonitorFactory>; |
| 28 | 31 |
| 29 AppLifetimeMonitorFactory(); | 32 AppLifetimeMonitorFactory(); |
| 30 ~AppLifetimeMonitorFactory() override; | 33 ~AppLifetimeMonitorFactory() override; |
| 31 | 34 |
| 32 // BrowserContextKeyedServiceFactory: | 35 // BrowserContextKeyedServiceFactory: |
| 33 KeyedService* BuildServiceInstanceFor( | 36 KeyedService* BuildServiceInstanceFor( |
| 34 content::BrowserContext* profile) const override; | 37 content::BrowserContext* context) const override; |
| 35 bool ServiceIsCreatedWithBrowserContext() const override; | 38 bool ServiceIsCreatedWithBrowserContext() const override; |
| 36 content::BrowserContext* GetBrowserContextToUse( | 39 content::BrowserContext* GetBrowserContextToUse( |
| 37 content::BrowserContext* context) const override; | 40 content::BrowserContext* context) const override; |
| 38 }; | 41 }; |
| 39 | 42 |
| 40 } // namespace apps | 43 } // namespace apps |
| 41 | 44 |
| 42 #endif // APPS_APP_LIFETIME_MONITOR_FACTORY_H_ | 45 #endif // APPS_APP_LIFETIME_MONITOR_FACTORY_H_ |
| OLD | NEW |