diff options
author | garykac@chromium.org <garykac@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2012-06-02 22:16:41 +0000 |
---|---|---|
committer | garykac@chromium.org <garykac@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2012-06-02 22:16:41 +0000 |
commit | d65e15bdcd7ffe01ec2054177a7e78fa69683a38 (patch) | |
tree | fb05d40a5b8bf2dfd943999b19fcb304e088d08e /remoting/protocol/client_control_dispatcher.h | |
parent | 051e71e1b702970eb39302abbe29836239036a3d (diff) | |
download | chromium_src-d65e15bdcd7ffe01ec2054177a7e78fa69683a38.zip chromium_src-d65e15bdcd7ffe01ec2054177a7e78fa69683a38.tar.gz chromium_src-d65e15bdcd7ffe01ec2054177a7e78fa69683a38.tar.bz2 |
[Chromoting] Initial plumbing for cursor shape.
This cl contains:
* protocol for sending cursor shape on control channel from host to client
* cross-platform (Pepper) client code for rendering host cursor
* Linux host support for reading current cursor shape
Separate CLs will follow with Mac and Windows host support.
BUG=116229
TEST=none
Review URL: https://chromiumcodereview.appspot.com/10382184
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@140205 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'remoting/protocol/client_control_dispatcher.h')
-rw-r--r-- | remoting/protocol/client_control_dispatcher.h | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/remoting/protocol/client_control_dispatcher.h b/remoting/protocol/client_control_dispatcher.h index e60a170..1cdc3f9 100644 --- a/remoting/protocol/client_control_dispatcher.h +++ b/remoting/protocol/client_control_dispatcher.h @@ -9,6 +9,7 @@ #include "remoting/protocol/buffered_socket_writer.h" #include "remoting/protocol/channel_dispatcher_base.h" #include "remoting/protocol/clipboard_stub.h" +#include "remoting/protocol/cursor_shape_stub.h" #include "remoting/protocol/host_stub.h" #include "remoting/protocol/message_reader.h" @@ -20,8 +21,8 @@ class ControlMessage; class Session; // ClientControlDispatcher dispatches incoming messages on the control -// channel to ClientStub or ClipboardStub, and also implements ClipboardStub -// and HostStub for outgoing messages. +// channel to ClientStub, ClipboardStub or CursorShapeStub. +// It also implements ClipboardStub and HostStub for outgoing messages. class ClientControlDispatcher : public ChannelDispatcherBase, public ClipboardStub, public HostStub { |