// Copyright 2018 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_VIRTUAL_U2F_DEVICE_H_ #define DEVICE_FIDO_VIRTUAL_U2F_DEVICE_H_ #include <stdint.h> #include <vector> #include "base/component_export.h" #include "base/containers/span.h" #include "base/memory/scoped_refptr.h" #include "device/fido/virtual_fido_device.h" namespace device { class COMPONENT_EXPORT(DEVICE_FIDO) VirtualU2fDevice : public VirtualFidoDevice { … }; } // namespace device #endif // DEVICE_FIDO_VIRTUAL_U2F_DEVICE_H_