// Copyright 2016 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_HOST_SECURITY_KEY_SECURITY_KEY_EXTENSION_H_ #define REMOTING_HOST_SECURITY_KEY_SECURITY_KEY_EXTENSION_H_ #include <memory> #include <string> #include "base/memory/scoped_refptr.h" #include "remoting/host/host_extension.h" namespace base { class SingleThreadTaskRunner; } // namespace base namespace remoting { class ClientSessionDetails; class HostExtensionSession; // SecurityKeyExtension extends HostExtension to enable Security Key support. class SecurityKeyExtension : public HostExtension { … }; } // namespace remoting #endif // REMOTING_HOST_SECURITY_KEY_SECURITY_KEY_EXTENSION_H_