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

Unified Diff: remoting/client/client_context.h

Issue 2861047: Refactor the client code. Move all x11-related code into X11View and create... (Closed) Base URL: svn://chrome-svn/chrome/trunk/src/
Patch Set: '' Created 10 years, 5 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
Index: remoting/client/client_context.h
===================================================================
--- remoting/client/client_context.h (revision 0)
+++ remoting/client/client_context.h (revision 0)
@@ -0,0 +1,48 @@
+// Copyright (c) 2010 The Chromium Authors. All rights reserved.
+// Use of this source code is governed by a BSD-style license that can be
+// found in the LICENSE file.
+
+#ifndef REMOTING_CLIENT_CLIENT_CONTEXT_H_
+#define REMOTING_CLIENT_CLIENT_CONTEXT_H_
+
+#include <string>
+
+#include "base/thread.h"
+#include "remoting/jingle_glue/jingle_thread.h"
+
+namespace remoting {
+
+// A class that manages threads and running context for the chromoting client
+// process.
+class ClientContext {
+ public:
+ ClientContext();
+ virtual ~ClientContext();
+
+ void Start();
+ void Stop();
+
+ JingleThread* jingle_thread();
+ MessageLoop* jingle_message_loop();
+
+ MessageLoop* main_message_loop();
+ MessageLoop* decode_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_;
+
+ // A thread that handles all decode operations.
+ base::Thread decode_thread_;
+
+ DISALLOW_COPY_AND_ASSIGN(ClientContext);
+};
+
+} // namespace remoting
+
+#endif // REMOTING_CLIENT_CLIENT_CONTEXT_H_
Property changes on: remoting/client/client_context.h
___________________________________________________________________
Added: svn:eol-style
+ LF

Powered by Google App Engine
This is Rietveld 408576698