chromium/remoting/protocol/clipboard_echo_filter.h

// Copyright 2012 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_PROTOCOL_CLIPBOARD_ECHO_FILTER_H_
#define REMOTING_PROTOCOL_CLIPBOARD_ECHO_FILTER_H_

#include <map>
#include <string>

#include "base/compiler_specific.h"
#include "base/memory/raw_ptr.h"
#include "remoting/protocol/clipboard_stub.h"

namespace remoting::protocol {

// ClipboardEchoFilter stops the host sending a clipboard item to the client, if
// that item was the latest item received from the client.
class ClipboardEchoFilter {};

}  // namespace remoting::protocol

#endif  // REMOTING_PROTOCOL_CLIPBOARD_ECHO_FILTER_H_