chromium/components/policy/core/browser/webui/machine_level_user_cloud_policy_status_provider.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 COMPONENTS_POLICY_CORE_BROWSER_WEBUI_MACHINE_LEVEL_USER_CLOUD_POLICY_STATUS_PROVIDER_H_
#define COMPONENTS_POLICY_CORE_BROWSER_WEBUI_MACHINE_LEVEL_USER_CLOUD_POLICY_STATUS_PROVIDER_H_

#include <string>

#include "base/memory/raw_ptr.h"
#include "base/values.h"
#include "components/policy/core/browser/webui/policy_status_provider.h"
#include "components/policy/core/common/cloud/cloud_policy_store.h"
#include "components/policy/policy_export.h"
#include "components/prefs/pref_service.h"

namespace policy {
class CloudPolicyCore;

// The following constants identify top-level keys in the dictionary returned by
// and are specific to MachineLevelUserCloudPolicyStatusProvider.
inline constexpr char kDeviceIdKey[] =;
inline constexpr char kMachineKey[] =;

struct POLICY_EXPORT MachineLevelUserCloudPolicyContext {};

class POLICY_EXPORT MachineLevelUserCloudPolicyStatusProvider
    : public PolicyStatusProvider,
      public CloudPolicyStore::Observer {};

}  // namespace policy

#endif  // COMPONENTS_POLICY_CORE_BROWSER_WEBUI_MACHINE_LEVEL_USER_CLOUD_POLICY_STATUS_PROVIDER_H_