Index: remoting/client/client_context.h |
diff --git a/remoting/client/client_context.h b/remoting/client/client_context.h |
index 38c60880c49f5d6d64a5684813dd01fa7203d3b3..e825d44fba17afe3711e6232048c07e61a88a295 100644 |
--- a/remoting/client/client_context.h |
+++ b/remoting/client/client_context.h |
@@ -8,7 +8,6 @@ |
#include <string> |
#include "base/threading/thread.h" |
-#include "remoting/jingle_glue/jingle_thread.h" |
namespace remoting { |
@@ -22,17 +21,11 @@ class ClientContext { |
void Start(); |
void Stop(); |
- JingleThread* jingle_thread(); |
- |
MessageLoop* main_message_loop(); |
MessageLoop* decode_message_loop(); |
MessageLoop* network_message_loop(); |
private: |
- // A thread that handles Jingle network operations (used in |
- // JingleHostConnection). |
- JingleThread jingle_thread_; |
- |
// A thread that handles capture rate control and sending data to the |
// HostConnection. |
base::Thread main_thread_; |
@@ -40,6 +33,9 @@ class ClientContext { |
// A thread that handles all decode operations. |
base::Thread decode_thread_; |
+ // A thread that handles all network IO. |
+ base::Thread network_thread_; |
+ |
DISALLOW_COPY_AND_ASSIGN(ClientContext); |
}; |