Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(541)

Side by Side Diff: remoting/protocol/host_control_dispatcher.h

Issue 10382184: [Chromoting] Initial plumbing for cursor shape. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Remove extra LOGs Created 8 years, 7 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch | Annotate | Revision Log
OLDNEW
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 "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/client_stub.h" 10 #include "remoting/protocol/client_stub.h"
11 #include "remoting/protocol/clipboard_stub.h" 11 #include "remoting/protocol/clipboard_stub.h"
12 #include "remoting/protocol/cursor_shape_stub.h"
12 #include "remoting/protocol/message_reader.h" 13 #include "remoting/protocol/message_reader.h"
13 14
14 namespace net { 15 namespace net {
15 class StreamSocket; 16 class StreamSocket;
16 } // namespace net 17 } // namespace net
17 18
18 namespace remoting { 19 namespace remoting {
19 namespace protocol { 20 namespace protocol {
20 21
21 class BufferedSocketWriter; 22 class BufferedSocketWriter;
22 class ControlMessage; 23 class ControlMessage;
23 class HostStub; 24 class HostStub;
24 class Session; 25 class Session;
25 26
26 // HostControlDispatcher dispatches incoming messages on the control 27 // HostControlDispatcher dispatches incoming messages on the control
27 // channel to HostStub or ClipboardStub, and also implements ClientStub and 28 // channel to HostStub or ClipboardStub, and also implements ClientStub and
28 // ClipboardStub for outgoing messages. 29 // ClipboardStub for outgoing messages.
29 class HostControlDispatcher : public ChannelDispatcherBase, public ClientStub, 30 class HostControlDispatcher : public ChannelDispatcherBase,
30 public ClipboardStub { 31 public ClientStub,
32 public ClipboardStub,
33 public CursorShapeStub {
31 public: 34 public:
32 HostControlDispatcher(); 35 HostControlDispatcher();
33 virtual ~HostControlDispatcher(); 36 virtual ~HostControlDispatcher();
34 37
35 // ClipboardStub implementation. 38 // ClipboardStub implementation for sending clipboard data to client.
36 virtual void InjectClipboardEvent(const ClipboardEvent& event) OVERRIDE; 39 virtual void InjectClipboardEvent(const ClipboardEvent& event) OVERRIDE;
37 40
41 // CursorShapeStub implementation for sending cursor shape to client.
42 virtual void SetCursorShape(const CursorShapeInfo& cursor_shape) OVERRIDE;
43
38 // Sets the ClipboardStub that will be called for each incoming clipboard 44 // Sets the ClipboardStub that will be called for each incoming clipboard
39 // message. |clipboard_stub| must outlive this object. 45 // message. |clipboard_stub| must outlive this object.
40 void set_clipboard_stub(ClipboardStub* clipboard_stub) { 46 void set_clipboard_stub(ClipboardStub* clipboard_stub) {
41 clipboard_stub_ = clipboard_stub; 47 clipboard_stub_ = clipboard_stub;
42 } 48 }
43 49
44 // Sets the HostStub that will be called for each incoming control 50 // Sets the HostStub that will be called for each incoming control
45 // message. |host_stub| must outlive this object. 51 // message. |host_stub| must outlive this object.
46 void set_host_stub(HostStub* host_stub) { host_stub_ = host_stub; } 52 void set_host_stub(HostStub* host_stub) { host_stub_ = host_stub; }
47 53
(...skipping 11 matching lines...) Expand all
59 ProtobufMessageReader<ControlMessage> reader_; 65 ProtobufMessageReader<ControlMessage> reader_;
60 scoped_refptr<BufferedSocketWriter> writer_; 66 scoped_refptr<BufferedSocketWriter> writer_;
61 67
62 DISALLOW_COPY_AND_ASSIGN(HostControlDispatcher); 68 DISALLOW_COPY_AND_ASSIGN(HostControlDispatcher);
63 }; 69 };
64 70
65 } // namespace protocol 71 } // namespace protocol
66 } // namespace remoting 72 } // namespace remoting
67 73
68 #endif // REMOTING_PROTOCOL_HOST_CONTROL_DISPATCHER_H_ 74 #endif // REMOTING_PROTOCOL_HOST_CONTROL_DISPATCHER_H_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698