chromium/remoting/protocol/fake_authenticator.h

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

#ifndef REMOTING_PROTOCOL_FAKE_AUTHENTICATOR_H_
#define REMOTING_PROTOCOL_FAKE_AUTHENTICATOR_H_

#include "base/callback_list.h"
#include "base/functional/callback.h"
#include "base/memory/raw_ptr.h"
#include "base/memory/weak_ptr.h"
#include "remoting/protocol/authenticator.h"
#include "remoting/protocol/channel_authenticator.h"
#include "remoting/protocol/credentials_type.h"

namespace remoting::protocol {

class FakeChannelAuthenticator : public ChannelAuthenticator {};

class FakeAuthenticator : public Authenticator {};

class FakeHostAuthenticatorFactory : public AuthenticatorFactory {};

}  // namespace remoting::protocol

#endif  // REMOTING_PROTOCOL_FAKE_AUTHENTICATOR_H_