#ifndef COMPONENTS_UNEXPORTABLE_KEYS_UNEXPORTABLE_KEY_TASKS_H_
#define COMPONENTS_UNEXPORTABLE_KEYS_UNEXPORTABLE_KEY_TASKS_H_
#include <cstdint>
#include <memory>
#include <optional>
#include "base/containers/span.h"
#include "base/functional/callback_forward.h"
#include "base/memory/scoped_refptr.h"
#include "components/unexportable_keys/background_task_impl.h"
#include "components/unexportable_keys/background_task_priority.h"
#include "crypto/signature_verifier.h"
namespace crypto {
class UnexportableSigningKey;
class UnexportableKeyProvider;
}
namespace unexportable_keys {
class RefCountedUnexportableSigningKey;
class GenerateKeyTask : public internal::BackgroundTaskImpl<
std::unique_ptr<crypto::UnexportableSigningKey>> { … };
class FromWrappedKeyTask
: public internal::BackgroundTaskImpl<
std::unique_ptr<crypto::UnexportableSigningKey>> { … };
class SignTask
: public internal::BackgroundTaskImpl<std::optional<std::vector<uint8_t>>> { … };
}
#endif