chromium/components/enterprise/client_certificates/core/dm_server_client.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_DM_SERVER_CLIENT_H_
#define COMPONENTS_ENTERPRISE_CLIENT_CERTIFICATES_CORE_DM_SERVER_CLIENT_H_

#include <optional>
#include <string_view>

#include "base/functional/callback_forward.h"
#include "base/memory/scoped_refptr.h"
#include "components/policy/core/common/cloud/device_management_service.h"
#include "components/policy/core/common/cloud/dmserver_job_configurations.h"
#include "components/policy/proto/device_management_backend.pb.h"
#include "services/network/public/cpp/shared_url_loader_factory.h"
#include "url/gurl.h"

namespace enterprise_management {
class DeviceManagementRequest;
}  // namespace enterprise_management

namespace policy {
class DeviceManagementService;
}  // namespace policy

namespace enterprise_attestation {

// Client with a simple interface for sending a request to the DM server,
// abstracting away the networking implementation details.
class DMServerClient {};

}  // namespace enterprise_attestation

#endif  // COMPONENTS_ENTERPRISE_CLIENT_CERTIFICATES_CORE_DM_SERVER_CLIENT_H_