Chromium Code Reviews| 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..b36bd6995c97f06719f678db6bf90826a6657bfc 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 host. |
|
Wez
2012/05/23 00:01:57
nit: "... to the host."
garykac
2012/05/26 01:58:01
Done.
|
| 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_; |