This source file includes following definitions.
- GetInstance
- BuildServiceInstanceFor
- ServiceIsCreatedWithBrowserContext
- ServiceIsNULLWhileTesting
#include "chrome/browser/local_discovery/privet_notifications_factory.h"
#include "chrome/browser/browser_process.h"
#include "chrome/browser/local_discovery/privet_notifications.h"
#include "components/keyed_service/content/browser_context_dependency_manager.h"
namespace local_discovery {
PrivetNotificationServiceFactory*
PrivetNotificationServiceFactory::GetInstance() {
return Singleton<PrivetNotificationServiceFactory>::get();
}
PrivetNotificationServiceFactory::PrivetNotificationServiceFactory()
: BrowserContextKeyedServiceFactory(
"PrivetNotificationService",
BrowserContextDependencyManager::GetInstance()) {
}
PrivetNotificationServiceFactory::~PrivetNotificationServiceFactory() {
}
KeyedService* PrivetNotificationServiceFactory::BuildServiceInstanceFor(
content::BrowserContext* profile) const {
return new PrivetNotificationService(profile);
}
bool
PrivetNotificationServiceFactory::ServiceIsCreatedWithBrowserContext() const {
return PrivetNotificationService::IsEnabled();
}
bool PrivetNotificationServiceFactory::ServiceIsNULLWhileTesting() const {
return true;
}
}