| 
									
										
										
										
											2021-01-21 00:45:06 -05:00
										 |  |  | // Copyright 2018 The Chromium Authors. All rights reserved.
 | 
					
						
							|  |  |  | // Use of this source code is governed by a BSD-style license that can be
 | 
					
						
							|  |  |  | // found in the LICENSE file.
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | #include "shell/browser/badging/badge_manager_factory.h"
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | #include "base/memory/ptr_util.h"
 | 
					
						
							|  |  |  | #include "components/keyed_service/content/browser_context_dependency_manager.h"
 | 
					
						
							|  |  |  | #include "shell/browser/badging/badge_manager.h"
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | namespace badging { | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | // static
 | 
					
						
							|  |  |  | BadgeManager* BadgeManagerFactory::GetForBrowserContext( | 
					
						
							|  |  |  |     content::BrowserContext* context) { | 
					
						
							|  |  |  |   return static_cast<badging::BadgeManager*>( | 
					
						
							|  |  |  |       GetInstance()->GetServiceForBrowserContext(context, true)); | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | // static
 | 
					
						
							|  |  |  | BadgeManagerFactory* BadgeManagerFactory::GetInstance() { | 
					
						
							| 
									
										
										
										
											2024-02-23 10:35:20 +01:00
										 |  |  |   static base::NoDestructor<BadgeManagerFactory> instance; | 
					
						
							|  |  |  |   return instance.get(); | 
					
						
							| 
									
										
										
										
											2021-01-21 00:45:06 -05:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | BadgeManagerFactory::BadgeManagerFactory() | 
					
						
							|  |  |  |     : BrowserContextKeyedServiceFactory( | 
					
						
							|  |  |  |           "BadgeManager", | 
					
						
							|  |  |  |           BrowserContextDependencyManager::GetInstance()) {} | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2021-06-03 21:16:13 -07:00
										 |  |  | BadgeManagerFactory::~BadgeManagerFactory() = default; | 
					
						
							| 
									
										
										
										
											2021-01-21 00:45:06 -05:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2024-09-12 15:44:14 -05:00
										 |  |  | std::unique_ptr<KeyedService> | 
					
						
							|  |  |  | BadgeManagerFactory::BuildServiceInstanceForBrowserContext( | 
					
						
							| 
									
										
										
										
											2021-01-21 00:45:06 -05:00
										 |  |  |     content::BrowserContext* context) const { | 
					
						
							| 
									
										
										
										
											2024-09-12 15:44:14 -05:00
										 |  |  |   return std::make_unique<BadgeManager>(); | 
					
						
							| 
									
										
										
										
											2021-01-21 00:45:06 -05:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | }  // namespace badging
 |