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

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

Issue 1464153002: Add ConsumeData method to QuicPacketCreator, ConsumeData wraps both CreateStreamFrame and AddFrame.… (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@107699435
Patch Set: Created 5 years 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
« no previous file with comments | « net/quic/quic_packet_generator.cc ('k') | net/quic/test_tools/quic_packet_creator_peer.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) 2013 The Chromium Authors. All rights reserved. 1 // Copyright (c) 2013 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_QUIC_PACKET_CREATOR_PEER_H_ 5 #ifndef NET_QUIC_TEST_TOOLS_QUIC_PACKET_CREATOR_PEER_H_
6 #define NET_QUIC_TEST_TOOLS_QUIC_PACKET_CREATOR_PEER_H_ 6 #define NET_QUIC_TEST_TOOLS_QUIC_PACKET_CREATOR_PEER_H_
7 7
8 #include "net/quic/quic_protocol.h" 8 #include "net/quic/quic_protocol.h"
9 9
10 namespace net { 10 namespace net {
(...skipping 15 matching lines...) Expand all
26 static void SetNextPacketNumberLength( 26 static void SetNextPacketNumberLength(
27 QuicPacketCreator* creator, 27 QuicPacketCreator* creator,
28 QuicPacketNumberLength next_packet_number_length); 28 QuicPacketNumberLength next_packet_number_length);
29 static QuicPacketNumberLength NextPacketNumberLength( 29 static QuicPacketNumberLength NextPacketNumberLength(
30 QuicPacketCreator* creator); 30 QuicPacketCreator* creator);
31 static void SetPacketNumber(QuicPacketCreator* creator, QuicPacketNumber s); 31 static void SetPacketNumber(QuicPacketCreator* creator, QuicPacketNumber s);
32 static void FillPacketHeader(QuicPacketCreator* creator, 32 static void FillPacketHeader(QuicPacketCreator* creator,
33 QuicFecGroupNumber fec_group, 33 QuicFecGroupNumber fec_group,
34 bool fec_flag, 34 bool fec_flag,
35 QuicPacketHeader* header); 35 QuicPacketHeader* header);
36 static size_t CreateStreamFrame(QuicPacketCreator* creator,
37 QuicStreamId id,
38 QuicIOVector iov,
39 size_t iov_offset,
40 QuicStreamOffset offset,
41 bool fin,
42 QuicFrame* frame,
43 UniqueStreamBuffer* buffer);
36 44
37 private: 45 private:
38 DISALLOW_COPY_AND_ASSIGN(QuicPacketCreatorPeer); 46 DISALLOW_COPY_AND_ASSIGN(QuicPacketCreatorPeer);
39 }; 47 };
40 48
41 } // namespace test 49 } // namespace test
42 50
43 } // namespace net 51 } // namespace net
44 52
45 #endif // NET_QUIC_TEST_TOOLS_QUIC_PACKET_CREATOR_PEER_H_ 53 #endif // NET_QUIC_TEST_TOOLS_QUIC_PACKET_CREATOR_PEER_H_
OLDNEW
« no previous file with comments | « net/quic/quic_packet_generator.cc ('k') | net/quic/test_tools/quic_packet_creator_peer.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698