Rewrite AndroidSyncSettings to be significantly simpler.
[chromium-blink-merge.git] / remoting / protocol / host_control_dispatcher.h
blob3fe8e733229c9ec17f159146b48223a4c91165a7
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 #ifndef REMOTING_PROTOCOL_HOST_CONTROL_DISPATCHER_H_
6 #define REMOTING_PROTOCOL_HOST_CONTROL_DISPATCHER_H_
8 #include "remoting/protocol/buffered_socket_writer.h"
9 #include "remoting/protocol/channel_dispatcher_base.h"
10 #include "remoting/protocol/client_stub.h"
11 #include "remoting/protocol/clipboard_stub.h"
12 #include "remoting/protocol/cursor_shape_stub.h"
13 #include "remoting/protocol/protobuf_message_parser.h"
15 namespace net {
16 class StreamSocket;
17 } // namespace net
19 namespace remoting {
20 namespace protocol {
22 class ControlMessage;
23 class HostStub;
24 class PairingResponse;
25 class Session;
27 // HostControlDispatcher dispatches incoming messages on the control
28 // channel to HostStub or ClipboardStub, and also implements ClientStub and
29 // CursorShapeStub for outgoing messages.
30 class HostControlDispatcher : public ChannelDispatcherBase,
31 public ClientStub {
32 public:
33 HostControlDispatcher();
34 ~HostControlDispatcher() override;
36 // ClientStub implementation.
37 void SetCapabilities(const Capabilities& capabilities) override;
38 void SetPairingResponse(const PairingResponse& pairing_response) override;
39 void DeliverHostMessage(const ExtensionMessage& message) override;
41 // ClipboardStub implementation for sending clipboard data to client.
42 void InjectClipboardEvent(const ClipboardEvent& event) override;
44 // CursorShapeStub implementation for sending cursor shape to client.
45 void SetCursorShape(const CursorShapeInfo& cursor_shape) override;
47 // Sets the ClipboardStub that will be called for each incoming clipboard
48 // message. |clipboard_stub| must outlive this object.
49 void set_clipboard_stub(ClipboardStub* clipboard_stub) {
50 clipboard_stub_ = clipboard_stub;
53 // Sets the HostStub that will be called for each incoming control
54 // message. |host_stub| must outlive this object.
55 void set_host_stub(HostStub* host_stub) { host_stub_ = host_stub; }
57 private:
58 void OnMessageReceived(scoped_ptr<ControlMessage> message,
59 const base::Closure& done_task);
61 ClipboardStub* clipboard_stub_;
62 HostStub* host_stub_;
64 ProtobufMessageParser<ControlMessage> parser_;
66 DISALLOW_COPY_AND_ASSIGN(HostControlDispatcher);
69 } // namespace protocol
70 } // namespace remoting
72 #endif // REMOTING_PROTOCOL_HOST_CONTROL_DISPATCHER_H_