| 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_HOST_EVENT_DISPATCHER_H_ | 5 #ifndef REMOTING_PROTOCOL_HOST_EVENT_DISPATCHER_H_ |
| 6 #define REMOTING_PROTOCOL_HOST_EVENT_DISPATCHER_H_ | 6 #define REMOTING_PROTOCOL_HOST_EVENT_DISPATCHER_H_ |
| 7 | 7 |
| 8 #include "remoting/protocol/channel_dispatcher_base.h" | 8 #include "remoting/protocol/channel_dispatcher_base.h" |
| 9 #include "remoting/protocol/protobuf_message_parser.h" | 9 #include "remoting/protocol/protobuf_message_parser.h" |
| 10 | 10 |
| 11 namespace remoting { | 11 namespace remoting { |
| 12 namespace protocol { | 12 namespace protocol { |
| 13 | 13 |
| 14 class EventMessage; | 14 class EventMessage; |
| 15 class InputStub; | 15 class InputStub; |
| 16 | 16 |
| 17 // HostEventDispatcher dispatches incoming messages on the event | 17 // HostEventDispatcher dispatches incoming messages on the event |
| 18 // channel to InputStub. | 18 // channel to InputStub. |
| 19 class HostEventDispatcher : public ChannelDispatcherBase { | 19 class HostEventDispatcher : public ChannelDispatcherBase { |
| 20 public: | 20 public: |
| 21 typedef base::Callback<void(int64)> EventTimestampCallback; | 21 typedef base::Callback<void(int64_t)> OnInputEventCallback; |
| 22 | 22 |
| 23 HostEventDispatcher(); | 23 HostEventDispatcher(); |
| 24 ~HostEventDispatcher() override; | 24 ~HostEventDispatcher() override; |
| 25 | 25 |
| 26 // Set InputStub that will be called for each incoming input | 26 // Set InputStub that will be called for each incoming input |
| 27 // message. Doesn't take ownership of |input_stub|. It must outlive | 27 // message. Doesn't take ownership of |input_stub|. It must outlive |
| 28 // the dispatcher. | 28 // the dispatcher. |
| 29 void set_input_stub(InputStub* input_stub) { input_stub_ = input_stub; } | 29 void set_input_stub(InputStub* input_stub) { input_stub_ = input_stub; } |
| 30 | 30 |
| 31 // Set callback to notify of each message's sequence number. The | 31 // Set callback to notify of each message's sequence number. The |
| 32 // callback cannot tear down this object. | 32 // callback cannot tear down this object. |
| 33 void set_event_timestamp_callback(const EventTimestampCallback& value) { | 33 void set_on_input_event_callback(const OnInputEventCallback& value) { |
| 34 event_timestamp_callback_ = value; | 34 on_input_event_callback_ = value; |
| 35 } | 35 } |
| 36 | 36 |
| 37 private: | 37 private: |
| 38 void OnMessageReceived(scoped_ptr<EventMessage> message, | 38 void OnMessageReceived(scoped_ptr<EventMessage> message, |
| 39 const base::Closure& done_task); | 39 const base::Closure& done_task); |
| 40 | 40 |
| 41 InputStub* input_stub_; | 41 InputStub* input_stub_; |
| 42 EventTimestampCallback event_timestamp_callback_; | 42 OnInputEventCallback on_input_event_callback_; |
| 43 | 43 |
| 44 ProtobufMessageParser<EventMessage> parser_; | 44 ProtobufMessageParser<EventMessage> parser_; |
| 45 | 45 |
| 46 DISALLOW_COPY_AND_ASSIGN(HostEventDispatcher); | 46 DISALLOW_COPY_AND_ASSIGN(HostEventDispatcher); |
| 47 }; | 47 }; |
| 48 | 48 |
| 49 } // namespace protocol | 49 } // namespace protocol |
| 50 } // namespace remoting | 50 } // namespace remoting |
| 51 | 51 |
| 52 #endif // REMOTING_PROTOCOL_HOST_EVENT_DISPATCHER_H_ | 52 #endif // REMOTING_PROTOCOL_HOST_EVENT_DISPATCHER_H_ |
| OLD | NEW |