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

Unified Diff: remoting/protocol/connection_to_host.h

Issue 10532211: Added piping for sending audio packets from host to client. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Fixed unittests Created 8 years, 6 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/connection_to_client.cc ('k') | remoting/protocol/connection_to_host.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: remoting/protocol/connection_to_host.h
diff --git a/remoting/protocol/connection_to_host.h b/remoting/protocol/connection_to_host.h
index 8524c726279c5ed9e53a3ae03d35acf84d947238..45b6a31a54cf6b35d9abd9a3cc24481f417fcbab 100644
--- a/remoting/protocol/connection_to_host.h
+++ b/remoting/protocol/connection_to_host.h
@@ -31,6 +31,8 @@ class VideoPacket;
namespace protocol {
+class AudioReader;
+class AudioStub;
class Authenticator;
class ClientControlDispatcher;
class ClientEventDispatcher;
@@ -74,7 +76,8 @@ class ConnectionToHost : public SignalStrategy::Listener,
HostEventCallback* event_callback,
ClientStub* client_stub,
ClipboardStub* clipboard_stub,
- VideoStub* video_stub);
+ VideoStub* video_stub,
+ AudioStub* audio_stub);
virtual void Disconnect(const base::Closure& shutdown_task);
@@ -129,12 +132,14 @@ class ConnectionToHost : public SignalStrategy::Listener,
ClientStub* client_stub_;
ClipboardStub* clipboard_stub_;
VideoStub* video_stub_;
+ AudioStub* audio_stub_;
scoped_ptr<SignalStrategy> signal_strategy_;
scoped_ptr<SessionManager> session_manager_;
scoped_ptr<Session> session_;
scoped_ptr<VideoReader> video_reader_;
+ scoped_ptr<AudioReader> audio_reader_;
scoped_ptr<ClientControlDispatcher> control_dispatcher_;
scoped_ptr<ClientEventDispatcher> event_dispatcher_;
ClipboardFilter clipboard_forwarder_;
« no previous file with comments | « remoting/protocol/connection_to_client.cc ('k') | remoting/protocol/connection_to_host.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698