diff options
author | sergeyu@chromium.org <sergeyu@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2012-04-17 05:26:29 +0000 |
---|---|---|
committer | sergeyu@chromium.org <sergeyu@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2012-04-17 05:26:29 +0000 |
commit | cec4d7abe9b7671e0ad170b458dccd86a59f7a29 (patch) | |
tree | 40311be04869a1fba87184a0694789bea0b78d3a /remoting/host/simple_host_process.cc | |
parent | 715ffe498a150b6ad85d19337e34eb4bbbf842cd (diff) | |
download | chromium_src-cec4d7abe9b7671e0ad170b458dccd86a59f7a29.zip chromium_src-cec4d7abe9b7671e0ad170b458dccd86a59f7a29.tar.gz chromium_src-cec4d7abe9b7671e0ad170b458dccd86a59f7a29.tar.bz2 |
Add file thread in MessageHostContext.
Review URL: https://chromiumcodereview.appspot.com/9956148
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@132544 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'remoting/host/simple_host_process.cc')
-rw-r--r-- | remoting/host/simple_host_process.cc | 5 |
1 files changed, 1 insertions, 4 deletions
diff --git a/remoting/host/simple_host_process.cc b/remoting/host/simple_host_process.cc index f37d7a9..d9fba33 100644 --- a/remoting/host/simple_host_process.cc +++ b/remoting/host/simple_host_process.cc @@ -93,12 +93,10 @@ class SimpleHost { public: SimpleHost() : message_loop_(MessageLoop::TYPE_UI), - file_io_thread_("FileIO"), - context_(NULL, message_loop_.message_loop_proxy()), + context_(message_loop_.message_loop_proxy()), fake_(false), is_it2me_(false) { context_.Start(); - file_io_thread_.Start(); network_change_notifier_.reset(net::NetworkChangeNotifier::Create()); } @@ -263,7 +261,6 @@ class SimpleHost { } MessageLoop message_loop_; - base::Thread file_io_thread_; ChromotingHostContext context_; scoped_ptr<net::NetworkChangeNotifier> network_change_notifier_; |