#include "chrome/browser/enterprise/browser_management/management_service_factory.h"
#include "base/no_destructor.h"
#include "build/chromeos_buildflags.h"
#include "chrome/browser/enterprise/browser_management/browser_management_service.h"
#include "chrome/browser/enterprise/browser_management/browser_management_status_provider.h"
#include "chrome/browser/profiles/profile.h"
#include "components/policy/core/common/management/platform_management_service.h"
#include "content/public/browser/browser_context.h"
#include "extensions/buildflags/buildflags.h"
namespace policy {
ManagementServiceFactory* ManagementServiceFactory::GetInstance() { … }
ManagementService* ManagementServiceFactory::GetForPlatform() { … }
ManagementService* ManagementServiceFactory::GetForProfile(Profile* profile) { … }
ManagementServiceFactory::ManagementServiceFactory()
: … { … }
ManagementServiceFactory::~ManagementServiceFactory() = default;
std::unique_ptr<KeyedService>
ManagementServiceFactory::BuildServiceInstanceForBrowserContext(
content::BrowserContext* context) const { … }
}