// Copyright 2017 The Chromium Authors // Use of this source code is governed by a BSD-style license that can be // found in the LICENSE file. #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 { … } std::unique_ptr<HostExtensionSession> TestEchoExtension::CreateExtensionSession( ClientSessionDetails* details, protocol::ClientStub* client_stub) { … } } // namespace remoting