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

Unified Diff: remoting/protocol/audio_reader.h

Issue 1654513003: Simplify message parsing. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@no_done
Patch Set: Created 4 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 c20ab5cfc8d6039ed8cacdf109358469a1209f8e..4ad5ef96a59bbf0d57e59a35f6bcd685aa930492 100644
--- a/remoting/protocol/audio_reader.h
+++ b/remoting/protocol/audio_reader.h
@@ -7,24 +7,22 @@
#include "base/compiler_specific.h"
#include "base/macros.h"
-#include "remoting/proto/audio.pb.h"
-#include "remoting/protocol/audio_stub.h"
#include "remoting/protocol/channel_dispatcher_base.h"
-#include "remoting/protocol/protobuf_message_parser.h"
namespace remoting {
namespace protocol {
+class AudioStub;
+
class AudioReader : public ChannelDispatcherBase {
public:
explicit AudioReader(AudioStub* audio_stub);
~AudioReader() override;
private:
- void OnAudioPacket(scoped_ptr<AudioPacket> audio_packet);
+ void OnIncomingMessage(scoped_ptr<CompoundBuffer> message) override;
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