diff options
Diffstat (limited to 'remoting/client/x11_client.cc')
-rw-r--r-- | remoting/client/x11_client.cc | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/remoting/client/x11_client.cc b/remoting/client/x11_client.cc index 8927610..7bfd3b4 100644 --- a/remoting/client/x11_client.cc +++ b/remoting/client/x11_client.cc @@ -15,7 +15,7 @@ #include "remoting/client/rectangle_update_decoder.h" #include "remoting/client/x11_view.h" #include "remoting/client/x11_input_handler.h" -#include "remoting/protocol/jingle_connection_to_host.h" +#include "remoting/protocol/connection_to_host.h" void ClientQuit(MessageLoop* loop) { loop->PostTask(FROM_HERE, new MessageLoop::QuitTask()); @@ -32,8 +32,7 @@ int main(int argc, char** argv) { MessageLoop ui_loop; remoting::ClientContext context; - remoting::protocol::JingleConnectionToHost connection( - context.jingle_thread()); + remoting::protocol::ConnectionToHost connection(context.jingle_thread()); remoting::X11View view; remoting::RectangleUpdateDecoder rectangle_decoder( context.decode_message_loop(), &view); |