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

Unified Diff: remoting/host/chromoting_host_context.cc

Issue 398873005: Preparations for Cast Host Extension (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Removed unnecessary getter methods Created 6 years, 5 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
« no previous file with comments | « no previous file | remoting/host/client_session.h » ('j') | remoting/host/client_session.h » ('J')
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: remoting/host/chromoting_host_context.cc
diff --git a/remoting/host/chromoting_host_context.cc b/remoting/host/chromoting_host_context.cc
index 0145f9990c53001c34cd4d024b5bd1ba521ecc50..abac0f04015e92a93ce36826bccd9ffa2e546114 100644
--- a/remoting/host/chromoting_host_context.cc
+++ b/remoting/host/chromoting_host_context.cc
@@ -34,8 +34,8 @@ ChromotingHostContext::ChromotingHostContext(
"ChromotingInputThread", ui_task_runner_, base::MessageLoop::TYPE_IO);
network_task_runner_ = AutoThread::CreateWithType(
"ChromotingNetworkThread", ui_task_runner_, base::MessageLoop::TYPE_IO);
- video_capture_task_runner_ =
- AutoThread::Create("ChromotingCaptureThread", ui_task_runner_);
+ video_capture_task_runner_ = AutoThread::CreateWithType(
+ "ChromotingCaptureThread", ui_task_runner_, base::MessageLoop::TYPE_IO);
aiguha 2014/07/29 17:06:26 (Based on comment from previous patch, but modifie
Wez 2014/08/01 01:14:14 It may be possible to check in CreateUdpSocket() w
video_encode_task_runner_ = AutoThread::Create(
"ChromotingEncodeThread", ui_task_runner_);
« no previous file with comments | « no previous file | remoting/host/client_session.h » ('j') | remoting/host/client_session.h » ('J')

Powered by Google App Engine
This is Rietveld 408576698