chromium/chrome/browser/enterprise/connectors/device_trust/key_management/browser/commands/key_rotation_command.h

// Copyright 2021 The Chromium Authors
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.

#ifndef CHROME_BROWSER_ENTERPRISE_CONNECTORS_DEVICE_TRUST_KEY_MANAGEMENT_BROWSER_COMMANDS_KEY_ROTATION_COMMAND_H_
#define CHROME_BROWSER_ENTERPRISE_CONNECTORS_DEVICE_TRUST_KEY_MANAGEMENT_BROWSER_COMMANDS_KEY_ROTATION_COMMAND_H_

#include <string>

#include "base/functional/callback.h"

namespace enterprise_connectors {

// Interface for classes that handle kicking-off device trust key rotation
// commands. There is an implementation for each platform. Command instances are
// not meant for parallel usages.
class KeyRotationCommand {};

}  // namespace enterprise_connectors

#endif  // CHROME_BROWSER_ENTERPRISE_CONNECTORS_DEVICE_TRUST_KEY_MANAGEMENT_BROWSER_COMMANDS_KEY_ROTATION_COMMAND_H_