#ifndef DEVICE_FIDO_U2F_SIGN_OPERATION_H_
#define DEVICE_FIDO_U2F_SIGN_OPERATION_H_
#include <stdint.h>
#include <memory>
#include <optional>
#include <vector>
#include "base/component_export.h"
#include "base/functional/callback.h"
#include "base/memory/weak_ptr.h"
#include "device/fido/ctap_get_assertion_request.h"
#include "device/fido/device_operation.h"
#include "device/fido/fido_constants.h"
namespace device {
class FidoDevice;
class AuthenticatorGetAssertionResponse;
class COMPONENT_EXPORT(DEVICE_FIDO) U2fSignOperation
: public DeviceOperation<CtapGetAssertionRequest,
AuthenticatorGetAssertionResponse> { … };
}
#endif