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

Unified Diff: remoting/host/chromoting_host.cc

Issue 1846893002: Interface with webrtc through encoded frames (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Addressed sergey comment Created 4 years, 8 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 | « remoting/codec/video_encoder_vpx_unittest.cc ('k') | remoting/proto/video.proto » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: remoting/host/chromoting_host.cc
diff --git a/remoting/host/chromoting_host.cc b/remoting/host/chromoting_host.cc
index bee95f5d0095d269f88b9770f4387095bfb00562..dc509fe11bd07c3488aae18a99c5e85648af464b 100644
--- a/remoting/host/chromoting_host.cc
+++ b/remoting/host/chromoting_host.cc
@@ -267,7 +267,8 @@ void ChromotingHost::OnIncomingSession(
if (session->config().protocol() ==
protocol::SessionConfig::Protocol::WEBRTC) {
connection.reset(new protocol::WebrtcConnectionToClient(
- base::WrapUnique(session), transport_context_));
+ base::WrapUnique(session), transport_context_,
+ video_encode_task_runner_));
} else {
connection.reset(new protocol::IceConnectionToClient(
base::WrapUnique(session), transport_context_,
« no previous file with comments | « remoting/codec/video_encoder_vpx_unittest.cc ('k') | remoting/proto/video.proto » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698