blob: e14163b03a12c672b32567b170f2a7e9607b44f4 [file] [log] [blame]
// Copyright 2018 The Chromium Authors. All rights reserved.
// 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;