// Copyright 2013 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_NEGOTIATING_HOST_AUTHENTICATOR_H_ #define REMOTING_PROTOCOL_NEGOTIATING_HOST_AUTHENTICATOR_H_ #include <memory> #include <string> #include <string_view> #include "remoting/protocol/authenticator.h" #include "remoting/protocol/negotiating_authenticator_base.h" namespace remoting::protocol { struct HostAuthenticationConfig; // Host-side implementation of NegotiatingAuthenticatorBase. // See comments in negotiating_authenticator_base.h for a general explanation. class NegotiatingHostAuthenticator : public NegotiatingAuthenticatorBase { … }; } // namespace remoting::protocol #endif // REMOTING_PROTOCOL_NEGOTIATING_HOST_AUTHENTICATOR_H_