| OLD | NEW |
| (Empty) |
| 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. | |
| 4 | |
| 5 #include "chrome/browser/notifications/notification_permission_context_factory.h
" | |
| 6 | |
| 7 #include "chrome/browser/notifications/notification_permission_context.h" | |
| 8 #include "chrome/browser/profiles/incognito_helpers.h" | |
| 9 #include "chrome/browser/profiles/profile.h" | |
| 10 #include "components/keyed_service/content/browser_context_dependency_manager.h" | |
| 11 | |
| 12 // static | |
| 13 NotificationPermissionContext* | |
| 14 NotificationPermissionContextFactory::GetForProfile(Profile* profile) { | |
| 15 return static_cast<NotificationPermissionContext*>( | |
| 16 GetInstance()->GetServiceForBrowserContext(profile, true)); | |
| 17 } | |
| 18 | |
| 19 // static | |
| 20 NotificationPermissionContextFactory* | |
| 21 NotificationPermissionContextFactory::GetInstance() { | |
| 22 return base::Singleton<NotificationPermissionContextFactory>::get(); | |
| 23 } | |
| 24 | |
| 25 NotificationPermissionContextFactory::NotificationPermissionContextFactory() | |
| 26 : PermissionContextFactoryBase( | |
| 27 "NotificationPermissionContext", | |
| 28 BrowserContextDependencyManager::GetInstance()) {} | |
| 29 | |
| 30 NotificationPermissionContextFactory::~NotificationPermissionContextFactory() {} | |
| 31 | |
| 32 KeyedService* NotificationPermissionContextFactory::BuildServiceInstanceFor( | |
| 33 content::BrowserContext* profile) const { | |
| 34 return new NotificationPermissionContext(static_cast<Profile*>(profile)); | |
| 35 } | |
| OLD | NEW |