#include "remoting/host/test_echo_extension_session.h"
#include "base/check.h"
#include "remoting/proto/control.pb.h"
#include "remoting/protocol/client_stub.h"
namespace {
constexpr char kExtensionMessageType[] = …;
}
namespace remoting {
TestEchoExtensionSession::TestEchoExtensionSession() = default;
TestEchoExtensionSession::~TestEchoExtensionSession() = default;
bool TestEchoExtensionSession::OnExtensionMessage(
ClientSessionDetails* client_session_details,
protocol::ClientStub* client_stub,
const protocol::ExtensionMessage& message) { … }
}