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

Unified Diff: remoting/protocol/audio_reader.h

Issue 841773005: Cleanup channel dispatchers (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 5 years, 11 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 | « no previous file | remoting/protocol/audio_reader.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: remoting/protocol/audio_reader.h
diff --git a/remoting/protocol/audio_reader.h b/remoting/protocol/audio_reader.h
index e78392bf3aebe2a3285b7d07827f875e9ed1e093..c4bced756be92c7834f2e276d792f3f8fc5be568 100644
--- a/remoting/protocol/audio_reader.h
+++ b/remoting/protocol/audio_reader.h
@@ -5,46 +5,22 @@
#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"
#include "remoting/protocol/channel_dispatcher_base.h"
-
-namespace net {
-class StreamSocket;
-} // namespace net
+#include "remoting/protocol/protobuf_message_parser.h"
namespace remoting {
namespace protocol {
-class Session;
-class SessionConfig;
-
class AudioReader : public ChannelDispatcherBase {
public:
- static scoped_ptr<AudioReader> Create(const SessionConfig& config);
-
+ explicit AudioReader(AudioStub* audio_stub);
~AudioReader() override;
- void set_audio_stub(AudioStub* audio_stub) { audio_stub_ = audio_stub; }
-
- protected:
- void OnInitialized() override;
-
private:
- explicit AudioReader(AudioPacket::Encoding encoding);
-
- void OnNewData(scoped_ptr<AudioPacket> packet,
- const base::Closure& done_task);
-
- AudioPacket::Encoding encoding_;
-
- ProtobufMessageReader<AudioPacket> reader_;
-
- // The stub that processes all received packets.
- AudioStub* audio_stub_;
+ ProtobufMessageParser<AudioPacket> parser_;
DISALLOW_COPY_AND_ASSIGN(AudioReader);
};
« no previous file with comments | « no previous file | remoting/protocol/audio_reader.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698