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/remoting_me2me_host.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/remoting_me2me_host.cc')
-rw-r--r-- | remoting/host/remoting_me2me_host.cc | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/remoting/host/remoting_me2me_host.cc b/remoting/host/remoting_me2me_host.cc index fbcc7fa..7b3e480 100644 --- a/remoting/host/remoting_me2me_host.cc +++ b/remoting/host/remoting_me2me_host.cc @@ -809,8 +809,8 @@ void HostProcess::StartHost() { CreateHostSessionManager(network_settings, context_->url_request_context_getter()), context_->audio_task_runner(), - context_->capture_task_runner(), - context_->encode_task_runner(), + context_->video_capture_task_runner(), + context_->video_encode_task_runner(), context_->network_task_runner()); // TODO(simonmorris): Get the maximum session duration from a policy. |