| 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_CONTROL_DISPATCHER_H_ | 5 #ifndef REMOTING_PROTOCOL_HOST_CONTROL_DISPATCHER_H_ |
| 6 #define REMOTING_PROTOCOL_HOST_CONTROL_DISPATCHER_H_ | 6 #define REMOTING_PROTOCOL_HOST_CONTROL_DISPATCHER_H_ |
| 7 | 7 |
| 8 #include "remoting/protocol/buffered_socket_writer.h" | 8 #include "remoting/protocol/buffered_socket_writer.h" |
| 9 #include "remoting/protocol/channel_dispatcher_base.h" | 9 #include "remoting/protocol/channel_dispatcher_base.h" |
| 10 #include "remoting/protocol/client_stub.h" | 10 #include "remoting/protocol/client_stub.h" |
| (...skipping 13 matching lines...) Expand all Loading... |
| 24 class PairingResponse; | 24 class PairingResponse; |
| 25 class Session; | 25 class Session; |
| 26 | 26 |
| 27 // HostControlDispatcher dispatches incoming messages on the control | 27 // HostControlDispatcher dispatches incoming messages on the control |
| 28 // channel to HostStub or ClipboardStub, and also implements ClientStub and | 28 // channel to HostStub or ClipboardStub, and also implements ClientStub and |
| 29 // CursorShapeStub for outgoing messages. | 29 // CursorShapeStub for outgoing messages. |
| 30 class HostControlDispatcher : public ChannelDispatcherBase, | 30 class HostControlDispatcher : public ChannelDispatcherBase, |
| 31 public ClientStub { | 31 public ClientStub { |
| 32 public: | 32 public: |
| 33 HostControlDispatcher(); | 33 HostControlDispatcher(); |
| 34 virtual ~HostControlDispatcher(); | 34 ~HostControlDispatcher() override; |
| 35 | 35 |
| 36 // ClientStub implementation. | 36 // ClientStub implementation. |
| 37 virtual void SetCapabilities(const Capabilities& capabilities) override; | 37 void SetCapabilities(const Capabilities& capabilities) override; |
| 38 virtual void SetPairingResponse( | 38 void SetPairingResponse(const PairingResponse& pairing_response) override; |
| 39 const PairingResponse& pairing_response) override; | 39 void DeliverHostMessage(const ExtensionMessage& message) override; |
| 40 virtual void DeliverHostMessage( | |
| 41 const ExtensionMessage& message) override; | |
| 42 | 40 |
| 43 // ClipboardStub implementation for sending clipboard data to client. | 41 // ClipboardStub implementation for sending clipboard data to client. |
| 44 virtual void InjectClipboardEvent(const ClipboardEvent& event) override; | 42 void InjectClipboardEvent(const ClipboardEvent& event) override; |
| 45 | 43 |
| 46 // CursorShapeStub implementation for sending cursor shape to client. | 44 // CursorShapeStub implementation for sending cursor shape to client. |
| 47 virtual void SetCursorShape(const CursorShapeInfo& cursor_shape) override; | 45 void SetCursorShape(const CursorShapeInfo& cursor_shape) override; |
| 48 | 46 |
| 49 // Sets the ClipboardStub that will be called for each incoming clipboard | 47 // Sets the ClipboardStub that will be called for each incoming clipboard |
| 50 // message. |clipboard_stub| must outlive this object. | 48 // message. |clipboard_stub| must outlive this object. |
| 51 void set_clipboard_stub(ClipboardStub* clipboard_stub) { | 49 void set_clipboard_stub(ClipboardStub* clipboard_stub) { |
| 52 clipboard_stub_ = clipboard_stub; | 50 clipboard_stub_ = clipboard_stub; |
| 53 } | 51 } |
| 54 | 52 |
| 55 // Sets the HostStub that will be called for each incoming control | 53 // Sets the HostStub that will be called for each incoming control |
| 56 // message. |host_stub| must outlive this object. | 54 // message. |host_stub| must outlive this object. |
| 57 void set_host_stub(HostStub* host_stub) { host_stub_ = host_stub; } | 55 void set_host_stub(HostStub* host_stub) { host_stub_ = host_stub; } |
| 58 | 56 |
| 59 protected: | 57 protected: |
| 60 // ChannelDispatcherBase overrides. | 58 // ChannelDispatcherBase overrides. |
| 61 virtual void OnInitialized() override; | 59 void OnInitialized() override; |
| 62 | 60 |
| 63 private: | 61 private: |
| 64 void OnMessageReceived(scoped_ptr<ControlMessage> message, | 62 void OnMessageReceived(scoped_ptr<ControlMessage> message, |
| 65 const base::Closure& done_task); | 63 const base::Closure& done_task); |
| 66 | 64 |
| 67 ClipboardStub* clipboard_stub_; | 65 ClipboardStub* clipboard_stub_; |
| 68 HostStub* host_stub_; | 66 HostStub* host_stub_; |
| 69 | 67 |
| 70 ProtobufMessageReader<ControlMessage> reader_; | 68 ProtobufMessageReader<ControlMessage> reader_; |
| 71 BufferedSocketWriter writer_; | 69 BufferedSocketWriter writer_; |
| 72 | 70 |
| 73 DISALLOW_COPY_AND_ASSIGN(HostControlDispatcher); | 71 DISALLOW_COPY_AND_ASSIGN(HostControlDispatcher); |
| 74 }; | 72 }; |
| 75 | 73 |
| 76 } // namespace protocol | 74 } // namespace protocol |
| 77 } // namespace remoting | 75 } // namespace remoting |
| 78 | 76 |
| 79 #endif // REMOTING_PROTOCOL_HOST_CONTROL_DISPATCHER_H_ | 77 #endif // REMOTING_PROTOCOL_HOST_CONTROL_DISPATCHER_H_ |
| OLD | NEW |