Roll src/third_party/WebKit 2dc4bc6:34469ea (svn 182261:182277)
[chromium-blink-merge.git] / remoting / protocol / input_stub.h
blobb60dacf42cfd1cff131a3af2fdc9efb993f8408f
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 TextEvent;
18 class MouseEvent;
20 class InputStub {
21 public:
22 InputStub() {}
23 virtual ~InputStub() {}
25 // Implementations must never assume the presence of any |event| fields,
26 // nor assume that their contents are valid.
27 virtual void InjectKeyEvent(const KeyEvent& event) = 0;
28 virtual void InjectTextEvent(const TextEvent& event) = 0;
29 virtual void InjectMouseEvent(const MouseEvent& event) = 0;
31 private:
32 DISALLOW_COPY_AND_ASSIGN(InputStub);
35 } // namespace protocol
36 } // namespace remoting
38 #endif // REMOTING_PROTOCOL_INPUT_STUB_H_