#ifndef REMOTING_HOST_TEST_ECHO_EXTENSION_H_
#define REMOTING_HOST_TEST_ECHO_EXTENSION_H_
#include "remoting/host/host_extension.h"
namespace remoting {
class TestEchoExtension : public HostExtension {
public:
TestEchoExtension();
TestEchoExtension(const TestEchoExtension&) = delete;
TestEchoExtension& operator=(const TestEchoExtension&) = delete;
~TestEchoExtension() override;
std::string capability() const override;
std::unique_ptr<HostExtensionSession> CreateExtensionSession(
ClientSessionDetails* client_session_details,
protocol::ClientStub* client_stub) override;
};
}
#endif