summaryrefslogtreecommitdiffstats
path: root/remoting/host/chromoting_host.cc
diff options
context:
space:
mode:
Diffstat (limited to 'remoting/host/chromoting_host.cc')
-rw-r--r--remoting/host/chromoting_host.cc4
1 files changed, 2 insertions, 2 deletions
diff --git a/remoting/host/chromoting_host.cc b/remoting/host/chromoting_host.cc
index 0b9ee8f..ab3478a 100644
--- a/remoting/host/chromoting_host.cc
+++ b/remoting/host/chromoting_host.cc
@@ -22,8 +22,8 @@
#include "remoting/protocol/client_stub.h"
#include "remoting/protocol/host_stub.h"
#include "remoting/protocol/input_stub.h"
+#include "remoting/protocol/jingle_session_manager.h"
#include "remoting/protocol/libjingle_transport_factory.h"
-#include "remoting/protocol/pepper_session_manager.h"
#include "remoting/protocol/session_config.h"
using remoting::protocol::ConnectionToClient;
@@ -70,7 +70,7 @@ void ChromotingHost::Start() {
scoped_ptr<protocol::TransportFactory> transport_factory(
new protocol::LibjingleTransportFactory());
session_manager_.reset(
- new protocol::PepperSessionManager(transport_factory.Pass()));
+ new protocol::JingleSessionManager(transport_factory.Pass()));
session_manager_->Init(signal_strategy_, this, network_settings_);
}