chromium/remoting/host/fake_host_extension.h

// Copyright 2014 The Chromium Authors
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.

#ifndef REMOTING_HOST_FAKE_HOST_EXTENSION_H_
#define REMOTING_HOST_FAKE_HOST_EXTENSION_H_

#include <memory>
#include <string>

#include "base/memory/raw_ptr.h"
#include "remoting/host/host_extension.h"

namespace remoting {

class ClientSessionDetails;
class HostExtensionSession;

namespace protocol {
class ClientStub;
}

// |HostExtension| implementation that can report a specified capability, and
// reports messages matching a specified type as having been handled.
class FakeExtension : public HostExtension {};

}  // namespace remoting

#endif  // REMOTING_HOST_FAKE_HOST_EXTENSION_H_