Index: remoting/protocol/audio_reader.h |
diff --git a/remoting/protocol/audio_reader.h b/remoting/protocol/audio_reader.h |
new file mode 100644 |
index 0000000000000000000000000000000000000000..0bd5fee8fa07fa725a9a39c6a7c704102de2ab4f |
--- /dev/null |
+++ b/remoting/protocol/audio_reader.h |
@@ -0,0 +1,68 @@ |
+// Copyright (c) 2012 The Chromium Authors. All rights reserved. |
+// Use of this source code is governed by a BSD-style license that can be |
+// found in the LICENSE file. |
+ |
+#ifndef REMOTING_PROTOCOL_AUDIO_READER_H_ |
+#define REMOTING_PROTOCOL_AUDIO_READER_H_ |
+ |
+#include "base/callback.h" |
+#include "base/compiler_specific.h" |
+#include "remoting/proto/audio.pb.h" |
+#include "remoting/protocol/audio_stub.h" |
+#include "remoting/protocol/message_reader.h" |
+ |
+namespace net { |
+class StreamSocket; |
+} // namespace net |
+ |
+namespace remoting { |
+namespace protocol { |
+ |
+class Session; |
+class SessionConfig; |
+ |
+class AudioReader { |
+ public: |
+ static AudioReader* Create(const SessionConfig& config); |
Sergey Ulanov
2012/06/15 19:35:23
this should be defined after InitializedCallback.
kxing
2012/06/15 19:46:41
Done.
|
+ |
+ // The callback is called when initialization is finished. The |
+ // parameter is set to true on success. |
+ typedef base::Callback<void(bool)> InitializedCallback; |
+ |
+ AudioReader(AudioPacket::Encoding encoding); |
Sergey Ulanov
2012/06/15 19:35:23
Constructors with a single argument must be marked
kxing
2012/06/15 19:46:41
Done.
|
+ |
+ virtual ~AudioReader(); |
+ |
+ // Initializies the reader. Doesn't take ownership of either |connection| |
Sergey Ulanov
2012/06/15 19:35:23
nit: remove the second sentence: we now use scoped
kxing
2012/06/15 19:46:41
Done.
|
+ // or |audio_stub|. |
+ void Init(Session* session, |
+ AudioStub* audio_stub, |
Sergey Ulanov
2012/06/15 19:35:23
incorrect indentation
kxing
2012/06/15 19:46:41
Done.
|
+ const InitializedCallback& callback); |
+ bool is_connected(); |
+ |
+ private: |
+ void OnChannelReady(scoped_ptr<net::StreamSocket> socket); |
+ void OnNewData(scoped_ptr<AudioPacket> packet, |
+ const base::Closure& done_task); |
+ |
+ Session* session_; |
+ |
+ InitializedCallback initialized_callback_; |
+ |
+ AudioPacket::Encoding encoding_; |
+ |
+ // TODO(sergeyu): Remove |channel_| and let |reader_| own it. |
+ scoped_ptr<net::StreamSocket> channel_; |
+ |
+ ProtobufMessageReader<AudioPacket> reader_; |
+ |
+ // The stub that processes all received packets. |
+ AudioStub* audio_stub_; |
+ |
+ DISALLOW_COPY_AND_ASSIGN(AudioReader); |
+}; |
+ |
+} // namespace protocol |
+} // namespace remoting |
+ |
+#endif // REMOTING_PROTOCOL_AUDIO_READER_H_ |