chromium/remoting/host/input_injector.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_HOST_INPUT_INJECTOR_H_
#define REMOTING_HOST_INPUT_INJECTOR_H_

#include <memory>

#include "base/memory/scoped_refptr.h"
#include "remoting/host/input_injector_metadata.h"
#include "remoting/protocol/clipboard_stub.h"
#include "remoting/protocol/input_stub.h"

namespace base {
class SingleThreadTaskRunner;
}  // namespace base

namespace remoting {

// TODO(sergeyu): Move ClipboardStub implementation to Clipboard.
class InputInjector : public protocol::ClipboardStub,
                      public protocol::InputStub {};

}  // namespace remoting

#endif  // REMOTING_HOST_INPUT_INJECTOR_H_