#ifndef COMPONENTS_POLICY_CORE_BROWSER_CONFIGURATION_POLICY_PREF_STORE_H_
#define COMPONENTS_POLICY_CORE_BROWSER_CONFIGURATION_POLICY_PREF_STORE_H_
#include <memory>
#include <string_view>
#include "base/memory/raw_ptr.h"
#include "base/observer_list.h"
#include "base/values.h"
#include "components/policy/core/common/policy_map.h"
#include "components/policy/core/common/policy_service.h"
#include "components/policy/core/common/policy_types.h"
#include "components/policy/policy_export.h"
#include "components/prefs/pref_store.h"
class PrefValueMap;
namespace policy {
class BrowserPolicyConnectorBase;
class ConfigurationPolicyHandlerList;
class POLICY_EXPORT ConfigurationPolicyPrefStore
: public PrefStore,
public PolicyService::Observer { … };
}
#endif