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.cc11
1 files changed, 8 insertions, 3 deletions
diff --git a/remoting/host/chromoting_host.cc b/remoting/host/chromoting_host.cc
index 9fad9cbf..c7fc7f5 100644
--- a/remoting/host/chromoting_host.cc
+++ b/remoting/host/chromoting_host.cc
@@ -15,10 +15,13 @@
#include "remoting/host/chromoting_host_context.h"
#include "remoting/host/capturer.h"
#include "remoting/host/host_config.h"
+#include "remoting/host/host_stub_fake.h"
#include "remoting/host/session_manager.h"
-#include "remoting/protocol/session_config.h"
-#include "remoting/protocol/jingle_session_manager.h"
#include "remoting/protocol/connection_to_client.h"
+#include "remoting/protocol/host_stub.h"
+#include "remoting/protocol/input_stub.h"
+#include "remoting/protocol/jingle_session_manager.h"
+#include "remoting/protocol/session_config.h"
using remoting::protocol::ConnectionToClient;
@@ -32,6 +35,7 @@ ChromotingHost::ChromotingHost(ChromotingHostContext* context,
config_(config),
capturer_(capturer),
input_stub_(input_stub),
+ host_stub_(new HostStubFake()),
state_(kInitial) {
}
@@ -273,7 +277,8 @@ void ChromotingHost::OnNewClientSession(
// If we accept the connected then create a client object and set the
// callback.
connection_ = new ConnectionToClient(context_->main_message_loop(),
- this, NULL, input_stub_.get());
+ this, host_stub_.get(),
+ input_stub_.get());
connection_->Init(session);
}