blob: 5d8b5ec0d030140beffff9c13e9c3f5418c73ea9 [file] [log] [blame]
// Copyright 2017 The Chromium Authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
#ifndef REMOTING_HOST_TEST_ECHO_EXTENSION_H_
#define REMOTING_HOST_TEST_ECHO_EXTENSION_H_
#include "base/macros.h"
#include "remoting/host/host_extension.h"
namespace remoting {
class TestEchoExtension : public HostExtension {
public:
TestEchoExtension();
~TestEchoExtension() override;
// HostExtension interface.
std::string capability() const override;
std::unique_ptr<HostExtensionSession> CreateExtensionSession(
ClientSessionDetails* client_session_details,
protocol::ClientStub* client_stub) override;
private:
DISALLOW_COPY_AND_ASSIGN(TestEchoExtension);
};
} // namespace remoting
#endif // REMOTING_HOST_TEST_ECHO_EXTENSION_H_