#ifndef content_protocol_WebAuthn_h
#define content_protocol_WebAuthn_h
#include "content/common/content_export.h"
#include "content/browser/devtools/protocol/protocol.h"
namespace content {
namespace protocol {
namespace WebAuthn {
AuthenticatorId;
AuthenticatorProtocol;
Ctap2Version;
AuthenticatorTransport;
class VirtualAuthenticatorOptions;
class Credential;
namespace AuthenticatorProtocolEnum {
CONTENT_EXPORT extern const char U2f[];
CONTENT_EXPORT extern const char Ctap2[];
}
namespace Ctap2VersionEnum {
CONTENT_EXPORT extern const char Ctap2_0[];
CONTENT_EXPORT extern const char Ctap2_1[];
}
namespace AuthenticatorTransportEnum {
CONTENT_EXPORT extern const char Usb[];
CONTENT_EXPORT extern const char Nfc[];
CONTENT_EXPORT extern const char Ble[];
CONTENT_EXPORT extern const char Cable[];
CONTENT_EXPORT extern const char Internal[];
}
class CONTENT_EXPORT VirtualAuthenticatorOptions : public ::crdtp::ProtocolObject<VirtualAuthenticatorOptions> { … };
class CONTENT_EXPORT Credential : public ::crdtp::ProtocolObject<Credential> { … };
class CONTENT_EXPORT Backend { … };
class CONTENT_EXPORT Frontend { … };
class CONTENT_EXPORT Dispatcher { … };
class CONTENT_EXPORT Metainfo { … };
}
}
}
#endif