#ifndef COMPONENTS_POLICY_CORE_COMMON_REMOTE_COMMANDS_REMOTE_COMMANDS_INVALIDATOR_IMPL_H_
#define COMPONENTS_POLICY_CORE_COMMON_REMOTE_COMMANDS_REMOTE_COMMANDS_INVALIDATOR_IMPL_H_
#include "base/memory/raw_ptr.h"
#include "components/policy/core/common/cloud/cloud_policy_core.h"
#include "components/policy/core/common/cloud/cloud_policy_store.h"
#include "components/policy/core/common/cloud/policy_invalidation_scope.h"
#include "components/policy/core/common/remote_commands/remote_commands_invalidator.h"
#include "components/policy/policy_export.h"
namespace base {
class Clock;
}
namespace policy {
class POLICY_EXPORT RemoteCommandsInvalidatorImpl
: public RemoteCommandsInvalidator,
public CloudPolicyCore::Observer,
public CloudPolicyStore::Observer { … };
}
#endif