// Copyright 2020 The Chromium Authors // Use of this source code is governed by a BSD-style license that can be // found in the LICENSE file. #ifndef DEVICE_FIDO_AUTH_TOKEN_REQUESTER_H_ #define DEVICE_FIDO_AUTH_TOKEN_REQUESTER_H_ #include <optional> #include <set> #include <string> #include <vector> #include "base/component_export.h" #include "base/functional/callback.h" #include "base/memory/raw_ptr.h" #include "base/memory/weak_ptr.h" #include "device/fido/fido_constants.h" #include "device/fido/pin.h" namespace device { class FidoAuthenticator; // AuthTokenRequester obtains a pinUvAuthToken from a CTAP2 device. class COMPONENT_EXPORT(DEVICE_FIDO) AuthTokenRequester { … }; } // namespace device #endif // DEVICE_FIDO_AUTH_TOKEN_REQUESTER_H_