#include "components/policy/core/browser/remote_commands/user_remote_commands_service_base.h"
#include "base/time/default_clock.h"
#include "components/invalidation/invalidation_listener.h"
#include "components/invalidation/profile_invalidation_provider.h"
#include "components/policy/core/common/cloud/cloud_policy_constants.h"
#include "components/policy/core/common/cloud/cloud_policy_core.h"
#include "components/policy/core/common/cloud/cloud_policy_service.h"
#include "components/policy/core/common/cloud/policy_invalidation_scope.h"
#include "components/policy/core/common/remote_commands/remote_commands_factory.h"
#include "components/policy/core/common/remote_commands/remote_commands_invalidator_impl.h"
namespace policy {
UserRemoteCommandsServiceBase::UserRemoteCommandsServiceBase(
CloudPolicyCore* core)
: … { … }
UserRemoteCommandsServiceBase::~UserRemoteCommandsServiceBase() = default;
void UserRemoteCommandsServiceBase::Init() { … }
void UserRemoteCommandsServiceBase::
OnCloudPolicyServiceInitializationCompleted() { … }
void UserRemoteCommandsServiceBase::OnPolicyRefreshed(bool success) { … }
void UserRemoteCommandsServiceBase::Shutdown() { … }
std::string_view UserRemoteCommandsServiceBase::name() const { … }
}