chromium/chromeos/ash/services/secure_channel/fake_authenticator.cc

// Copyright 2017 The Chromium Authors
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.

#include "chromeos/ash/services/secure_channel/fake_authenticator.h"

#include <utility>

namespace ash::secure_channel {

FakeAuthenticator::FakeAuthenticator() = default;

FakeAuthenticator::~FakeAuthenticator() = default;

void FakeAuthenticator::Authenticate(
    Authenticator::AuthenticationCallback callback) {
  last_callback_ = std::move(callback);
}

}  // namespace ash::secure_channel