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

Unified Diff: remoting/protocol/protobuf_video_reader.h

Issue 6277003: Simplified MessageReader and MessageDecoder classes. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: - Created 9 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 | « remoting/protocol/message_reader.cc ('k') | remoting/protocol/protobuf_video_reader.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: remoting/protocol/protobuf_video_reader.h
diff --git a/remoting/protocol/protobuf_video_reader.h b/remoting/protocol/protobuf_video_reader.h
index 42e1c97f8bd013ee2fd3e4568055f9e6a01818d0..7305dd7b0c3c4f28caeb42dce83b8d177b4b1346 100644
--- a/remoting/protocol/protobuf_video_reader.h
+++ b/remoting/protocol/protobuf_video_reader.h
@@ -21,14 +21,13 @@ class ProtobufVideoReader : public VideoReader {
// VideoReader interface.
virtual void Init(protocol::Session* session, VideoStub* video_stub);
- virtual void Close();
private:
void OnNewData(VideoPacket* packet);
VideoPacketFormat::Encoding encoding_;
- MessageReader reader_;
+ ProtobufMessageReader<VideoPacket> reader_;
// The stub that processes all received packets.
VideoStub* video_stub_;
« no previous file with comments | « remoting/protocol/message_reader.cc ('k') | remoting/protocol/protobuf_video_reader.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698