Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(90)

Unified Diff: remoting/client/client_context.h

Issue 7575016: Don't use JingleThread in the client plugin. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: update DEPS Created 9 years, 4 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « remoting/client/chromoting_client.cc ('k') | remoting/client/client_context.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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);
};
« no previous file with comments | « remoting/client/chromoting_client.cc ('k') | remoting/client/client_context.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698