#include "remoting/host/test_echo_extension.h"
#include <memory>
#include "remoting/host/test_echo_extension_session.h"
namespace {
constexpr char kCapability[] = "";
}
namespace remoting {
TestEchoExtension::TestEchoExtension() = default;
TestEchoExtension::~TestEchoExtension() = default;
std::string TestEchoExtension::capability() const {
return kCapability;
}
std::unique_ptr<HostExtensionSession> TestEchoExtension::CreateExtensionSession(
ClientSessionDetails* details,
protocol::ClientStub* client_stub) {
return std::make_unique<TestEchoExtensionSession>();
}
}