blob: 81e7909216e0d5627382dfc4290e104fdbcc193a [file] [log] [blame]
// 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 "chrome/browser/webauthn/authenticator_reference.h"
AuthenticatorReference::AuthenticatorReference(
base::StringPiece authenticator_id,
device::FidoTransportProtocol transport)
: authenticator_id(authenticator_id),
transport(transport) {}
AuthenticatorReference::AuthenticatorReference(AuthenticatorReference&& data) =
default;
AuthenticatorReference& AuthenticatorReference::operator=(
AuthenticatorReference&& other) = default;
AuthenticatorReference::~AuthenticatorReference() = default;