chromium/chrome/updater/device_management/dm_response_validator.h

// 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.

#ifndef CHROME_UPDATER_DEVICE_MANAGEMENT_DM_RESPONSE_VALIDATOR_H_
#define CHROME_UPDATER_DEVICE_MANAGEMENT_DM_RESPONSE_VALIDATOR_H_

#include <string>
#include <vector>

#include "base/ranges/algorithm.h"
#include "chrome/enterprise_companion/device_management_storage/dm_storage.h"

namespace enterprise_management {

class PolicyData;
class PolicyFetchResponse;

}  // namespace enterprise_management

namespace updater {

struct PolicyValueValidationIssue {};

struct PolicyValidationResult {};

class DMResponseValidator {};

}  // namespace updater

#endif  // CHROME_UPDATER_DEVICE_MANAGEMENT_DM_RESPONSE_VALIDATOR_H_