OLD | NEW |
1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. | 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 | 2 // Use of this source code is governed by a BSD-style license that can be |
3 // found in the LICENSE file. | 3 // found in the LICENSE file. |
4 | 4 |
5 #ifndef REMOTING_PROTOCOL_CLIENT_EVENT_DISPATCHER_H_ | 5 #ifndef REMOTING_PROTOCOL_CLIENT_EVENT_DISPATCHER_H_ |
6 #define REMOTING_PROTOCOL_CLIENT_EVENT_DISPATCHER_H_ | 6 #define REMOTING_PROTOCOL_CLIENT_EVENT_DISPATCHER_H_ |
7 | 7 |
8 #include "base/memory/ref_counted.h" | 8 #include "base/memory/ref_counted.h" |
9 #include "remoting/protocol/channel_dispatcher_base.h" | 9 #include "remoting/protocol/channel_dispatcher_base.h" |
10 #include "remoting/protocol/input_stub.h" | 10 #include "remoting/protocol/input_stub.h" |
11 | 11 |
12 namespace remoting { | 12 namespace remoting { |
13 namespace protocol { | 13 namespace protocol { |
14 | 14 |
15 class BufferedSocketWriter; | 15 class BufferedSocketWriter; |
16 | 16 |
17 // ClientEventDispatcher manages the event channel on the client | 17 // ClientEventDispatcher manages the event channel on the client |
18 // side. It implements InputStub for outgoing input messages. | 18 // side. It implements InputStub for outgoing input messages. |
19 class ClientEventDispatcher : public ChannelDispatcherBase, public InputStub { | 19 class ClientEventDispatcher : public ChannelDispatcherBase, public InputStub { |
20 public: | 20 public: |
21 ClientEventDispatcher(); | 21 ClientEventDispatcher(); |
22 virtual ~ClientEventDispatcher(); | 22 virtual ~ClientEventDispatcher(); |
23 | 23 |
24 // InputStub implementation. | 24 // InputStub implementation. |
| 25 virtual void InjectClipboardEvent(const ClipboardEvent& event) OVERRIDE; |
25 virtual void InjectKeyEvent(const KeyEvent& event) OVERRIDE; | 26 virtual void InjectKeyEvent(const KeyEvent& event) OVERRIDE; |
26 virtual void InjectMouseEvent(const MouseEvent& event) OVERRIDE; | 27 virtual void InjectMouseEvent(const MouseEvent& event) OVERRIDE; |
27 | 28 |
28 protected: | 29 protected: |
29 // ChannelDispatcherBase overrides. | 30 // ChannelDispatcherBase overrides. |
30 virtual void OnInitialized() OVERRIDE; | 31 virtual void OnInitialized() OVERRIDE; |
31 | 32 |
32 private: | 33 private: |
33 scoped_refptr<BufferedSocketWriter> writer_; | 34 scoped_refptr<BufferedSocketWriter> writer_; |
34 | 35 |
35 DISALLOW_COPY_AND_ASSIGN(ClientEventDispatcher); | 36 DISALLOW_COPY_AND_ASSIGN(ClientEventDispatcher); |
36 }; | 37 }; |
37 | 38 |
38 } // namespace protocol | 39 } // namespace protocol |
39 } // namespace remoting | 40 } // namespace remoting |
40 | 41 |
41 #endif // REMOTING_PROTOCOL_CLIENT_EVENT_DISPATCHER_H_ | 42 #endif // REMOTING_PROTOCOL_CLIENT_EVENT_DISPATCHER_H_ |
OLD | NEW |