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

Unified Diff: remoting/host/chromoting_host_context.cc

Issue 10909133: Implement clipboard for Chromoting Linux hosts. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Stomped another MessagePumpLibevent Created 8 years, 3 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 | « no previous file | remoting/host/clipboard_linux.cc » ('j') | remoting/host/clipboard_linux.cc » ('J')
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: remoting/host/chromoting_host_context.cc
diff --git a/remoting/host/chromoting_host_context.cc b/remoting/host/chromoting_host_context.cc
index 37ba9f3785530db2c6bfca425d11233da8e77ca3..3aec2a0cfcc7d676d29f7ce7c0391b7c2677ef60 100644
--- a/remoting/host/chromoting_host_context.cc
+++ b/remoting/host/chromoting_host_context.cc
@@ -45,7 +45,8 @@ bool ChromotingHostContext::Start() {
MessageLoop::TYPE_IO, 0)) &&
network_thread_.StartWithOptions(base::Thread::Options(
MessageLoop::TYPE_IO, 0)) &&
- desktop_thread_.Start() &&
+ desktop_thread_.StartWithOptions(base::Thread::Options(
+ MessageLoop::TYPE_IO, 0)) &&
Wez 2012/09/17 22:13:29 nit: Since all of these threads are IO threads, cr
Lambros 2012/09/25 22:42:39 Done.
file_thread_.StartWithOptions(
base::Thread::Options(MessageLoop::TYPE_IO, 0));
if (!started)
« no previous file with comments | « no previous file | remoting/host/clipboard_linux.cc » ('j') | remoting/host/clipboard_linux.cc » ('J')

Powered by Google App Engine
This is Rietveld 408576698