| Index: remoting/protocol/connection_to_host.h
|
| diff --git a/remoting/protocol/connection_to_host.h b/remoting/protocol/connection_to_host.h
|
| index 45e1f9a51e0a1c645bfddb8fb2df56966b90e255..9deb3b69de0066b8d4c292bbddd33b0803121e53 100644
|
| --- a/remoting/protocol/connection_to_host.h
|
| +++ b/remoting/protocol/connection_to_host.h
|
| @@ -42,6 +42,7 @@ class ClipboardStub;
|
| class HostStub;
|
| class InputStub;
|
| class SessionConfig;
|
| +class TransportFactory;
|
| class VideoReader;
|
| class VideoStub;
|
|
|
| @@ -64,7 +65,6 @@ class ConnectionToHost : public SignalStrategy::Listener,
|
| };
|
|
|
| ConnectionToHost(base::MessageLoopProxy* message_loop,
|
| - pp::Instance* pp_instance,
|
| bool allow_nat_traversal);
|
| virtual ~ConnectionToHost();
|
|
|
| @@ -72,6 +72,7 @@ class ConnectionToHost : public SignalStrategy::Listener,
|
| const std::string& local_jid,
|
| const std::string& host_jid,
|
| const std::string& host_public_key,
|
| + scoped_ptr<TransportFactory> transport_factory,
|
| scoped_ptr<Authenticator> authenticator,
|
| HostEventCallback* event_callback,
|
| ClientStub* client_stub,
|
| @@ -122,7 +123,6 @@ class ConnectionToHost : public SignalStrategy::Listener,
|
| void SetState(State state, ErrorCode error);
|
|
|
| scoped_refptr<base::MessageLoopProxy> message_loop_;
|
| - pp::Instance* pp_instance_;
|
| bool allow_nat_traversal_;
|
|
|
| std::string host_jid_;
|
|
|