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

Unified Diff: remoting/host/chromoting_host_context.cc

Issue 10381115: [Chromoting] The Windows IT2Me host gets any new text items it finds on the clipboard. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 8 years, 7 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/host/chromoting_host_context.cc
diff --git a/remoting/host/chromoting_host_context.cc b/remoting/host/chromoting_host_context.cc
index 5e9ff7651bbabbd3461f83595bca585df582983c..c9aba5efdeb70eb39315eaac708948dc47c74c5a 100644
--- a/remoting/host/chromoting_host_context.cc
+++ b/remoting/host/chromoting_host_context.cc
@@ -29,7 +29,9 @@ ChromotingHostContext::~ChromotingHostContext() {
bool ChromotingHostContext::Start() {
// Start all the threads.
bool started = main_thread_.Start() && encode_thread_.Start() &&
- jingle_thread_.Start() && desktop_thread_.Start() &&
+ jingle_thread_.Start() &&
+ desktop_thread_.StartWithOptions(
+ base::Thread::Options(MessageLoop::TYPE_UI, 0)) &&
Sergey Ulanov 2012/05/11 21:10:11 On some platforms (mac and linux) it might be unsa
simonmorris 2012/05/11 22:12:58 Sounds good to me. But it'd be better to consult m
Wez 2012/05/15 18:40:02 As Sergey points out, we can only have multiple UI
io_thread_.StartWithOptions(
base::Thread::Options(MessageLoop::TYPE_IO, 0)) &&
file_thread_.StartWithOptions(

Powered by Google App Engine
This is Rietveld 408576698