diff options
author | dmaclach@chromium.org <dmaclach@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2010-06-30 22:51:06 +0000 |
---|---|---|
committer | dmaclach@chromium.org <dmaclach@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2010-06-30 22:51:06 +0000 |
commit | 81565e95b6dc068eb7403113024e299ffaef4fd8 (patch) | |
tree | ce02b29d4a664391ec3472a50ac3f8c4ffdbed96 /remoting/host/chromoting_host_context.cc | |
parent | c766a168bb731fc8618b0a202935c75fe67494ee (diff) | |
download | chromium_src-81565e95b6dc068eb7403113024e299ffaef4fd8.zip chromium_src-81565e95b6dc068eb7403113024e299ffaef4fd8.tar.gz chromium_src-81565e95b6dc068eb7403113024e299ffaef4fd8.tar.bz2 |
Fix up thread types.
BUG=none
TEST=none
Review URL: http://codereview.chromium.org/2863035
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@51306 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'remoting/host/chromoting_host_context.cc')
-rw-r--r-- | remoting/host/chromoting_host_context.cc | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/remoting/host/chromoting_host_context.cc b/remoting/host/chromoting_host_context.cc index 2f889a1..b3cdaf6 100644 --- a/remoting/host/chromoting_host_context.cc +++ b/remoting/host/chromoting_host_context.cc @@ -22,8 +22,7 @@ ChromotingHostContext::~ChromotingHostContext() { void ChromotingHostContext::Start() { // Start all the threads. - main_thread_.StartWithOptions( - base::Thread::Options(MessageLoop::TYPE_UI, 0)); + main_thread_.Start(); capture_thread_.Start(); encode_thread_.Start(); jingle_thread_.Start(); |