chromium/chrome/browser/enterprise/connectors/device_trust/attestation/browser/profile_attester.h

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

#ifndef CHROME_BROWSER_ENTERPRISE_CONNECTORS_DEVICE_TRUST_ATTESTATION_BROWSER_PROFILE_ATTESTER_H_
#define CHROME_BROWSER_ENTERPRISE_CONNECTORS_DEVICE_TRUST_ATTESTATION_BROWSER_PROFILE_ATTESTER_H_

#include "chrome/browser/enterprise/connectors/device_trust/attestation/browser/attester.h"

#include "base/memory/raw_ptr.h"

namespace enterprise {
class ProfileIdService;
}  // namespace enterprise

namespace policy {
class CloudPolicyStore;
}  // namespace policy

namespace enterprise_connectors {

// This class is in charge of populating profile specific details during the
// browser attestation process.
class ProfileAttester : public Attester {};

}  // namespace enterprise_connectors

#endif  // CHROME_BROWSER_ENTERPRISE_CONNECTORS_DEVICE_TRUST_ATTESTATION_BROWSER_PROFILE_ATTESTER_H_