| Index: remoting/protocol/connection_to_host.h
|
| diff --git a/remoting/protocol/connection_to_host.h b/remoting/protocol/connection_to_host.h
|
| index 9deb3b69de0066b8d4c292bbddd33b0803121e53..77f8d181d1a0329502d6229ce22d354fbf5b157a 100644
|
| --- a/remoting/protocol/connection_to_host.h
|
| +++ b/remoting/protocol/connection_to_host.h
|
| @@ -39,6 +39,7 @@ class ClientControlDispatcher;
|
| class ClientEventDispatcher;
|
| class ClientStub;
|
| class ClipboardStub;
|
| +class CursorShapeStub;
|
| class HostStub;
|
| class InputStub;
|
| class SessionConfig;
|
| @@ -77,12 +78,14 @@ class ConnectionToHost : public SignalStrategy::Listener,
|
| HostEventCallback* event_callback,
|
| ClientStub* client_stub,
|
| ClipboardStub* clipboard_stub,
|
| + CursorShapeStub* cursor_shape_stub,
|
| VideoStub* video_stub);
|
|
|
| virtual void Disconnect(const base::Closure& shutdown_task);
|
|
|
| virtual const SessionConfig& config();
|
|
|
| + // Stubs for sending data to the host.
|
| virtual ClipboardStub* clipboard_stub();
|
| virtual HostStub* host_stub();
|
| virtual InputStub* input_stub();
|
| @@ -134,6 +137,7 @@ class ConnectionToHost : public SignalStrategy::Listener,
|
| // Stub for incoming messages.
|
| ClientStub* client_stub_;
|
| ClipboardStub* clipboard_stub_;
|
| + CursorShapeStub* cursor_shape_stub_;
|
| VideoStub* video_stub_;
|
|
|
| scoped_ptr<SignalStrategy> signal_strategy_;
|
|
|