// 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. #include "device/fido/fido_transport_protocol.h" namespace device { std::optional<FidoTransportProtocol> ConvertToFidoTransportProtocol( std::string_view protocol) { … } std::string_view ToString(FidoTransportProtocol protocol) { … } AuthenticatorAttachment AuthenticatorAttachmentFromTransport( FidoTransportProtocol transport) { … } } // namespace device