| Index: remoting/protocol/connection_to_host.cc
 | 
| diff --git a/remoting/protocol/connection_to_host.cc b/remoting/protocol/connection_to_host.cc
 | 
| index 0bdc5c3b9984b89e4862dff03f214338d6e79b0d..93527120c361d658885aa94566a122d66d48d582 100644
 | 
| --- a/remoting/protocol/connection_to_host.cc
 | 
| +++ b/remoting/protocol/connection_to_host.cc
 | 
| @@ -16,8 +16,8 @@
 | 
|  #include "remoting/protocol/client_control_dispatcher.h"
 | 
|  #include "remoting/protocol/client_event_dispatcher.h"
 | 
|  #include "remoting/protocol/client_stub.h"
 | 
| -#include "remoting/protocol/jingle_session_manager.h"
 | 
|  #include "remoting/protocol/pepper_session_manager.h"
 | 
| +#include "remoting/protocol/pepper_transport_factory.h"
 | 
|  #include "remoting/protocol/video_reader.h"
 | 
|  #include "remoting/protocol/video_stub.h"
 | 
|  #include "remoting/protocol/util.h"
 | 
| @@ -70,7 +70,9 @@ void ConnectionToHost::Connect(scoped_refptr<XmppProxy> xmpp_proxy,
 | 
|    signal_strategy_->AddListener(this);
 | 
|    signal_strategy_->Connect();
 | 
|  
 | 
| -  session_manager_.reset(new PepperSessionManager(pp_instance_));
 | 
| +  scoped_ptr<TransportFactory> transport_factory(
 | 
| +      new PepperTransportFactory(pp_instance_));
 | 
| +  session_manager_.reset(new PepperSessionManager(transport_factory.Pass()));
 | 
|    session_manager_->Init(signal_strategy_.get(), this,
 | 
|                           NetworkSettings(allow_nat_traversal_));
 | 
|  }
 | 
| 
 |