summaryrefslogtreecommitdiffstats
path: root/remoting/host
diff options
context:
space:
mode:
authorgarykac@google.com <garykac@google.com@0039d316-1c4b-4281-b951-d872f2087c98>2010-07-20 00:34:57 +0000
committergarykac@google.com <garykac@google.com@0039d316-1c4b-4281-b951-d872f2087c98>2010-07-20 00:34:57 +0000
commit4d37c874d917cc370e188cfdef05bb629388421a (patch)
tree08f68e3ef47406ae69209f489832fa8f1c76448e /remoting/host
parent0af395eb3fa7d33473b4239a7b637fc6a7ce0e98 (diff)
downloadchromium_src-4d37c874d917cc370e188cfdef05bb629388421a.zip
chromium_src-4d37c874d917cc370e188cfdef05bb629388421a.tar.gz
chromium_src-4d37c874d917cc370e188cfdef05bb629388421a.tar.bz2
Refactor the client code for the X11 version.
Make ChromotingViews responsible for initializing themselves. Move all x11-related code into X11View. Create InputCapturer class manage client input capture. BUG=none TEST=ran Win host + X11 client Review URL: http://codereview.chromium.org/2861047 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@52973 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'remoting/host')
-rw-r--r--remoting/host/chromoting_host_context.h12
1 files changed, 6 insertions, 6 deletions
diff --git a/remoting/host/chromoting_host_context.h b/remoting/host/chromoting_host_context.h
index f488f74..f4e2f8a 100644
--- a/remoting/host/chromoting_host_context.h
+++ b/remoting/host/chromoting_host_context.h
@@ -2,8 +2,8 @@
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
-#ifndef REMOTING_CHROMOTING_HOST_CONTEXT_H_
-#define REMOTING_CHROMOTING_HOST_CONTEXT_H_
+#ifndef REMOTING_HOST_CHROMOTING_HOST_CONTEXT_H_
+#define REMOTING_HOST_CHROMOTING_HOST_CONTEXT_H_
#include <string>
@@ -31,16 +31,16 @@ class ChromotingHostContext {
private:
FRIEND_TEST(ChromotingHostContextTest, StartAndStop);
- // A thread that host network operations.
+ // A thread that hosts all network operations.
JingleThread jingle_thread_;
- // A thread that host ChromotingHost.
+ // A thread that hosts ChromotingHost and performs rate control.
base::Thread main_thread_;
- // A thread that host all capture operations.
+ // A thread that hosts all capture operations.
base::Thread capture_thread_;
- // A thread that host all encode operations.
+ // A thread that hosts all encode operations.
base::Thread encode_thread_;
DISALLOW_COPY_AND_ASSIGN(ChromotingHostContext);