chromium/chrome/browser/enterprise/browser_management/management_service_factory.cc

// Copyright 2021 The Chromium Authors
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.

#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 {

// static
ManagementServiceFactory* ManagementServiceFactory::GetInstance() {}

// static
ManagementService* ManagementServiceFactory::GetForPlatform() {}

// static
ManagementService* ManagementServiceFactory::GetForProfile(Profile* profile) {}

ManagementServiceFactory::ManagementServiceFactory()
    :{}

ManagementServiceFactory::~ManagementServiceFactory() = default;

std::unique_ptr<KeyedService>
ManagementServiceFactory::BuildServiceInstanceForBrowserContext(
    content::BrowserContext* context) const {}

}  // namespace policy