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

Unified Diff: remoting/host/client_connection.h

Issue 4229003: Add VideoReader and VideoWriter interfaces. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: - Created 10 years, 1 month 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/host/chromoting_host.cc ('k') | remoting/host/client_connection.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: remoting/host/client_connection.h
diff --git a/remoting/host/client_connection.h b/remoting/host/client_connection.h
index 38e383cb193972d972d41a27f2503db8c8e51c20..6f9deca71ad021d18aed57850343d24b7955b260 100644
--- a/remoting/host/client_connection.h
+++ b/remoting/host/client_connection.h
@@ -15,6 +15,7 @@
#include "remoting/protocol/chromotocol_connection.h"
#include "remoting/protocol/message_reader.h"
#include "remoting/protocol/stream_writer.h"
+#include "remoting/protocol/video_writer.h"
namespace remoting {
@@ -100,8 +101,9 @@ class ClientConnection : public base::RefCountedThreadSafe<ClientConnection> {
// The libjingle channel used to send and receive data from the remote client.
scoped_refptr<ChromotocolConnection> connection_;
+ ControlStreamWriter control_writer_;
MessageReader event_reader_;
- VideoStreamWriter video_writer_;
+ scoped_ptr<VideoWriter> video_writer_;
// The message loop that this object runs on.
MessageLoop* loop_;
« no previous file with comments | « remoting/host/chromoting_host.cc ('k') | remoting/host/client_connection.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698