#include "chrome/browser/enterprise/idle/idle_service_factory.h"
#include "chrome/browser/profiles/profile.h"
#include "components/enterprise/idle/idle_pref_names.h"
#include "components/pref_registry/pref_registry_syncable.h"
namespace enterprise_idle {
IdleService* IdleServiceFactory::GetForBrowserContext(
content::BrowserContext* context) { … }
IdleServiceFactory* IdleServiceFactory::GetInstance() { … }
IdleServiceFactory::IdleServiceFactory()
: … { … }
std::unique_ptr<KeyedService>
IdleServiceFactory::BuildServiceInstanceForBrowserContext(
content::BrowserContext* context) const { … }
void IdleServiceFactory::RegisterProfilePrefs(
user_prefs::PrefRegistrySyncable* registry) { … }
bool IdleServiceFactory::ServiceIsCreatedWithBrowserContext() const { … }
}