summaryrefslogtreecommitdiffstats
path: root/remoting/client/chromoting_client.cc
diff options
context:
space:
mode:
Diffstat (limited to 'remoting/client/chromoting_client.cc')
-rw-r--r--remoting/client/chromoting_client.cc11
1 files changed, 9 insertions, 2 deletions
diff --git a/remoting/client/chromoting_client.cc b/remoting/client/chromoting_client.cc
index cd358c4..4e4b9a3 100644
--- a/remoting/client/chromoting_client.cc
+++ b/remoting/client/chromoting_client.cc
@@ -10,7 +10,6 @@
#include "remoting/client/client_context.h"
#include "remoting/client/input_handler.h"
#include "remoting/client/rectangle_update_decoder.h"
-#include "remoting/proto/internal.pb.h"
#include "remoting/protocol/connection_to_host.h"
#include "remoting/protocol/session_config.h"
@@ -46,7 +45,7 @@ void ChromotingClient::Start() {
}
connection_->Connect(config_.username, config_.auth_token, config_.host_jid,
- this, this);
+ this, this, this);
if (!view_->Initialize()) {
ClientDone();
@@ -215,4 +214,12 @@ void ChromotingClient::Initialize() {
input_handler_->Initialize();
}
+////////////////////////////////////////////////////////////////////////////
+// ClientStub control channel interface.
+void ChromotingClient::NotifyResolution(
+ const protocol::NotifyResolutionRequest* msg,
+ Task* done) {
+ // TODO(garykac): Implement this.
+}
+
} // namespace remoting