Do not invoke cursor-hiding codepath on keypress in non-ChromeOS Aura
[chromium-blink-merge.git] / remoting / protocol / input_stub.h
blob9183ae0bdccc729391e037f7320c3efe3a6c1dda
1 // Copyright (c) 2012 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file.
5 // Interface for a device that receives input events.
6 // This interface handles input event messages defined in event.proto.
8 #ifndef REMOTING_PROTOCOL_INPUT_STUB_H_
9 #define REMOTING_PROTOCOL_INPUT_STUB_H_
11 #include "base/basictypes.h"
13 namespace remoting {
14 namespace protocol {
16 class KeyEvent;
17 class MouseEvent;
19 class InputStub {
20 public:
21 InputStub() {}
22 virtual ~InputStub() {}
24 // Implementations must never assume the presence of any |event| fields,
25 // nor assume that their contents are valid.
26 virtual void InjectKeyEvent(const KeyEvent& event) = 0;
27 virtual void InjectMouseEvent(const MouseEvent& event) = 0;
29 private:
30 DISALLOW_COPY_AND_ASSIGN(InputStub);
33 } // namespace protocol
34 } // namespace remoting
36 #endif // REMOTING_PROTOCOL_INPUT_STUB_H_