chromium/components/enterprise/client_certificates/core/certificate_provisioning_service.h

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

#ifndef COMPONENTS_ENTERPRISE_CLIENT_CERTIFICATES_CORE_CERTIFICATE_PROVISIONING_SERVICE_H_
#define COMPONENTS_ENTERPRISE_CLIENT_CERTIFICATES_CORE_CERTIFICATE_PROVISIONING_SERVICE_H_

#include <memory>
#include <optional>

#include "base/functional/callback_forward.h"
#include "components/enterprise/client_certificates/core/client_identity.h"
#include "components/enterprise/client_certificates/core/upload_client_error.h"
#include "components/keyed_service/core/keyed_service.h"

class PrefService;

namespace client_certificates {

class ContextDelegate;
class CertificateStore;
class KeyUploadClient;

// Service in charge with provisioning a managed identity (private key and
// certificate).
class CertificateProvisioningService : public KeyedService {};

}  // namespace client_certificates

#endif  // COMPONENTS_ENTERPRISE_CLIENT_CERTIFICATES_CORE_CERTIFICATE_PROVISIONING_SERVICE_H_