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

Unified Diff: remoting/protocol/webrtc_connection_to_client.h

Issue 2392963003: Add Audio support in Chromoting host when using WebRTC. (Closed)
Patch Set: . Created 4 years, 2 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/protocol/webrtc_audio_stream.cc ('k') | remoting/protocol/webrtc_connection_to_client.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: remoting/protocol/webrtc_connection_to_client.h
diff --git a/remoting/protocol/webrtc_connection_to_client.h b/remoting/protocol/webrtc_connection_to_client.h
index 2e16b55e65a439566358e54c35ad5f4044cf6acb..af5533d18dc5e0ffbf9edd9a61ff2b0be340d5a0 100644
--- a/remoting/protocol/webrtc_connection_to_client.h
+++ b/remoting/protocol/webrtc_connection_to_client.h
@@ -32,7 +32,8 @@ class WebrtcConnectionToClient : public ConnectionToClient,
WebrtcConnectionToClient(
std::unique_ptr<Session> session,
scoped_refptr<protocol::TransportContext> transport_context,
- scoped_refptr<base::SingleThreadTaskRunner> video_encode_task_runner);
+ scoped_refptr<base::SingleThreadTaskRunner> video_encode_task_runner,
+ scoped_refptr<base::SingleThreadTaskRunner> audio_task_runner);
~WebrtcConnectionToClient() override;
// ConnectionToClient interface.
@@ -82,6 +83,7 @@ class WebrtcConnectionToClient : public ConnectionToClient,
std::unique_ptr<Session> session_;
scoped_refptr<base::SingleThreadTaskRunner> video_encode_task_runner_;
+ scoped_refptr<base::SingleThreadTaskRunner> audio_task_runner_;
std::unique_ptr<HostControlDispatcher> control_dispatcher_;
std::unique_ptr<HostEventDispatcher> event_dispatcher_;
« no previous file with comments | « remoting/protocol/webrtc_audio_stream.cc ('k') | remoting/protocol/webrtc_connection_to_client.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698