#ifndef COMPONENTS_POLICY_CORE_BROWSER_CLOUD_MESSAGE_UTIL_H_
#define COMPONENTS_POLICY_CORE_BROWSER_CLOUD_MESSAGE_UTIL_H_
#include <string>
#include "components/policy/core/common/cloud/cloud_policy_constants.h"
#include "components/policy/core/common/cloud/cloud_policy_store.h"
#include "components/policy/core/common/cloud/cloud_policy_validator.h"
#include "components/policy/policy_export.h"
namespace policy {
POLICY_EXPORT std::u16string FormatDeviceManagementStatus(
DeviceManagementStatus status);
POLICY_EXPORT std::u16string FormatValidationStatus(
CloudPolicyValidatorBase::Status validation_status);
POLICY_EXPORT std::u16string FormatStoreStatus(
CloudPolicyStore::Status store_status,
CloudPolicyValidatorBase::Status validation_status);
}
#endif