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

Side by Side Diff: net/quic/test_tools/simple_quic_framer.h

Issue 180723003: Land Recent QUIC Changes. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Fix unintialized memory error Created 6 years, 9 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 unified diff | Download patch | Annotate | Revision Log
« no previous file with comments | « net/quic/test_tools/quic_test_utils.cc ('k') | net/quic/test_tools/simple_quic_framer.cc » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. 1 // Copyright (c) 2012 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be 2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file. 3 // found in the LICENSE file.
4 4
5 #ifndef NET_QUIC_TEST_TOOLS_SIMPLE_QUIC_FRAMER_H_ 5 #ifndef NET_QUIC_TEST_TOOLS_SIMPLE_QUIC_FRAMER_H_
6 #define NET_QUIC_TEST_TOOLS_SIMPLE_QUIC_FRAMER_H_ 6 #define NET_QUIC_TEST_TOOLS_SIMPLE_QUIC_FRAMER_H_
7 7
8 #include <vector> 8 #include <vector>
9 9
10 #include "base/basictypes.h" 10 #include "base/basictypes.h"
(...skipping 23 matching lines...) Expand all
34 ~SimpleQuicFramer(); 34 ~SimpleQuicFramer();
35 35
36 bool ProcessPacket(const QuicEncryptedPacket& packet); 36 bool ProcessPacket(const QuicEncryptedPacket& packet);
37 bool ProcessPacket(const QuicPacket& packet); 37 bool ProcessPacket(const QuicPacket& packet);
38 38
39 const QuicPacketHeader& header() const; 39 const QuicPacketHeader& header() const;
40 size_t num_frames() const; 40 size_t num_frames() const;
41 const std::vector<QuicAckFrame>& ack_frames() const; 41 const std::vector<QuicAckFrame>& ack_frames() const;
42 const std::vector<QuicConnectionCloseFrame>& connection_close_frames() const; 42 const std::vector<QuicConnectionCloseFrame>& connection_close_frames() const;
43 const std::vector<QuicCongestionFeedbackFrame>& feedback_frames() const; 43 const std::vector<QuicCongestionFeedbackFrame>& feedback_frames() const;
44 const std::vector<QuicStopWaitingFrame>& stop_waiting_frames() const;
44 const std::vector<QuicGoAwayFrame>& goaway_frames() const; 45 const std::vector<QuicGoAwayFrame>& goaway_frames() const;
45 const std::vector<QuicRstStreamFrame>& rst_stream_frames() const; 46 const std::vector<QuicRstStreamFrame>& rst_stream_frames() const;
46 const std::vector<QuicStreamFrame>& stream_frames() const; 47 const std::vector<QuicStreamFrame>& stream_frames() const;
47 const QuicFecData& fec_data() const; 48 const QuicFecData& fec_data() const;
48 QuicFramer* framer(); 49 QuicFramer* framer();
49 50
50 private: 51 private:
51 QuicFramer framer_; 52 QuicFramer framer_;
52 scoped_ptr<SimpleFramerVisitor> visitor_; 53 scoped_ptr<SimpleFramerVisitor> visitor_;
53 DISALLOW_COPY_AND_ASSIGN(SimpleQuicFramer); 54 DISALLOW_COPY_AND_ASSIGN(SimpleQuicFramer);
54 }; 55 };
55 56
56 } // namespace test 57 } // namespace test
57 58
58 } // namespace net 59 } // namespace net
59 60
60 #endif // NET_QUIC_TEST_TOOLS_SIMPLE_QUIC_FRAMER_H_ 61 #endif // NET_QUIC_TEST_TOOLS_SIMPLE_QUIC_FRAMER_H_
OLDNEW
« no previous file with comments | « net/quic/test_tools/quic_test_utils.cc ('k') | net/quic/test_tools/simple_quic_framer.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698