diff options
author | sergeyu@chromium.org <sergeyu@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2012-11-14 04:11:19 +0000 |
---|---|---|
committer | sergeyu@chromium.org <sergeyu@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2012-11-14 04:11:19 +0000 |
commit | 16dbfb0e842b3ebb5dc156dc4b0990dc7dfa04db (patch) | |
tree | 17eb507379dc017b5801a966475cc90a12976a9a /remoting/host/plugin/host_script_object.cc | |
parent | 1b58372bcb3578edfad33f5bb42859c7bdbcab2a (diff) | |
download | chromium_src-16dbfb0e842b3ebb5dc156dc4b0990dc7dfa04db.zip chromium_src-16dbfb0e842b3ebb5dc156dc4b0990dc7dfa04db.tar.gz chromium_src-16dbfb0e842b3ebb5dc156dc4b0990dc7dfa04db.tar.bz2 |
Rename capture and encode threads to make it clear that they are for video.
Renamed capture thread to video_capture thread and encode thread to video_encode thread. It's
mainly to prevent bugs like crbug.com/157992
Review URL: https://chromiumcodereview.appspot.com/11366226
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@167591 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'remoting/host/plugin/host_script_object.cc')
-rw-r--r-- | remoting/host/plugin/host_script_object.cc | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/remoting/host/plugin/host_script_object.cc b/remoting/host/plugin/host_script_object.cc index 52129fd..a83bd3b 100644 --- a/remoting/host/plugin/host_script_object.cc +++ b/remoting/host/plugin/host_script_object.cc @@ -369,8 +369,8 @@ void HostNPScriptObject::It2MeImpl::FinishConnect( CreateHostSessionManager(network_settings, host_context_->url_request_context_getter()), host_context_->audio_task_runner(), - host_context_->capture_task_runner(), - host_context_->encode_task_runner(), + host_context_->video_capture_task_runner(), + host_context_->video_encode_task_runner(), host_context_->network_task_runner()); host_->AddStatusObserver(this); log_to_server_.reset( |