1 // Copyright 2015 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/notifications/notifier_state_tracker_factory.h"
7 #include "chrome/browser/notifications/notification_permission_context_factory.h"
8 #include "chrome/browser/notifications/notifier_state_tracker.h"
9 #include "chrome/browser/profiles/incognito_helpers.h"
10 #include "chrome/browser/profiles/profile.h"
11 #include "components/keyed_service/content/browser_context_dependency_manager.h"
15 NotifierStateTrackerFactory::GetForProfile(Profile
* profile
) {
16 return static_cast<NotifierStateTracker
*>(
17 GetInstance()->GetServiceForBrowserContext(profile
, true));
21 NotifierStateTrackerFactory
*
22 NotifierStateTrackerFactory::GetInstance() {
23 return base::Singleton
<NotifierStateTrackerFactory
>::get();
26 NotifierStateTrackerFactory::NotifierStateTrackerFactory()
27 : BrowserContextKeyedServiceFactory(
28 "NotifierStateTracker",
29 BrowserContextDependencyManager::GetInstance()) {
30 DependsOn(NotificationPermissionContextFactory::GetInstance());
33 NotifierStateTrackerFactory::~NotifierStateTrackerFactory() {}
35 KeyedService
* NotifierStateTrackerFactory::BuildServiceInstanceFor(
36 content::BrowserContext
* profile
) const {
37 return new NotifierStateTracker(static_cast<Profile
*>(profile
));
40 content::BrowserContext
*
41 NotifierStateTrackerFactory::GetBrowserContextToUse(
42 content::BrowserContext
* context
) const {
43 return chrome::GetBrowserContextOwnInstanceInIncognito(context
);