#ifndef COMPONENTS_POLICY_CORE_COMMON_ASYNC_POLICY_PROVIDER_H_
#define COMPONENTS_POLICY_CORE_COMMON_ASYNC_POLICY_PROVIDER_H_
#include <memory>
#include "base/cancelable_callback.h"
#include "base/memory/weak_ptr.h"
#include "base/sequence_checker.h"
#include "components/policy/core/common/configuration_policy_provider.h"
#include "components/policy/policy_export.h"
namespace base {
class SingleThreadTaskRunner;
}
namespace policy {
class AsyncPolicyLoader;
class PolicyBundle;
class SchemaRegistry;
class POLICY_EXPORT AsyncPolicyProvider : public ConfigurationPolicyProvider { … };
}
#endif