#ifndef COMPONENTS_POLICY_CORE_COMMON_SCHEMA_REGISTRY_H_
#define COMPONENTS_POLICY_CORE_COMMON_SCHEMA_REGISTRY_H_
#include <set>
#include "base/compiler_specific.h"
#include "base/memory/raw_ptr.h"
#include "base/memory/ref_counted.h"
#include "base/observer_list.h"
#include "base/sequence_checker.h"
#include "components/policy/core/common/policy_namespace.h"
#include "components/policy/core/common/schema.h"
#include "components/policy/core/common/schema_map.h"
#include "components/policy/policy_export.h"
namespace policy {
class SchemaMap;
class POLICY_EXPORT SchemaRegistry { … };
class POLICY_EXPORT CombinedSchemaRegistry
: public SchemaRegistry,
public SchemaRegistry::Observer,
public SchemaRegistry::InternalObserver { … };
class POLICY_EXPORT ForwardingSchemaRegistry
: public SchemaRegistry,
public SchemaRegistry::Observer,
public SchemaRegistry::InternalObserver { … };
}
#endif