blob: 20fb21361e5ee7f0dcb68bbcb64fe13a3815abf9 [file] [log] [blame]
// 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.
// Interface for a device that receives input events.
// This interface handles input event messages defined in event.proto.
#ifndef REMOTING_PROTOCOL_INPUT_STUB_H_
#define REMOTING_PROTOCOL_INPUT_STUB_H_
namespace remoting::protocol {
class KeyEvent;
class TextEvent;
class MouseEvent;
class TouchEvent;
class InputStub {
public:
InputStub() = default;
InputStub(const InputStub&) = delete;
InputStub& operator=(const InputStub&) = delete;
virtual ~InputStub() = default;
// Implementations must never assume the presence of any |event| fields, nor
// assume that their contents are valid.
virtual void InjectKeyEvent(const KeyEvent& event) = 0;
virtual void InjectTextEvent(const TextEvent& event) = 0;
virtual void InjectMouseEvent(const MouseEvent& event) = 0;
virtual void InjectTouchEvent(const TouchEvent& event) = 0;
};
} // namespace remoting::protocol
#endif // REMOTING_PROTOCOL_INPUT_STUB_H_