| Index: remoting/protocol/connection_to_host.h
|
| diff --git a/remoting/protocol/connection_to_host.h b/remoting/protocol/connection_to_host.h
|
| index dcca294d4192450353b8ed037115f830cd2c14b4..59e68e46ec56198fd15048f0305fa8b79668627b 100644
|
| --- a/remoting/protocol/connection_to_host.h
|
| +++ b/remoting/protocol/connection_to_host.h
|
| @@ -31,11 +31,10 @@ class VideoPacket;
|
|
|
| namespace protocol {
|
|
|
| -class ClientMessageDispatcher;
|
| +class ClientControlDispatcher;
|
| +class ClientInputDispatcher;
|
| class ClientStub;
|
| -class HostControlSender;
|
| class HostStub;
|
| -class InputSender;
|
| class InputStub;
|
| class SessionConfig;
|
| class VideoReader;
|
| @@ -152,13 +151,9 @@ class ConnectionToHost : public SignalStrategy::StatusObserver,
|
| scoped_ptr<SessionManager> session_manager_;
|
| scoped_ptr<Session> session_;
|
|
|
| - // Handlers for incoming messages.
|
| scoped_ptr<VideoReader> video_reader_;
|
| - scoped_ptr<ClientMessageDispatcher> dispatcher_;
|
| -
|
| - // Senders for outgoing messages.
|
| - scoped_ptr<InputSender> input_sender_;
|
| - scoped_ptr<HostControlSender> host_control_sender_;
|
| + scoped_ptr<ClientControlDispatcher> control_dispatcher_;
|
| + scoped_ptr<ClientInputDispatcher> input_dispatcher_;
|
|
|
| // Internal state of the connection.
|
| State state_;
|
|
|