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

Side by Side Diff: net/quic/test_tools/quic_connection_peer.cc

Issue 2825083003: Landing Recent QUIC changes until Mon Apr 17 2017 (Closed)
Patch Set: Format Created 3 years, 8 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
« no previous file with comments | « net/quic/test_tools/crypto_test_utils.cc ('k') | net/quic/test_tools/quic_session_peer.h » ('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 #include "net/quic/test_tools/quic_connection_peer.h" 5 #include "net/quic/test_tools/quic_connection_peer.h"
6 6
7 #include "net/quic/core/congestion_control/send_algorithm_interface.h" 7 #include "net/quic/core/congestion_control/send_algorithm_interface.h"
8 #include "net/quic/core/quic_flags.h"
9 #include "net/quic/core/quic_packet_writer.h" 8 #include "net/quic/core/quic_packet_writer.h"
10 #include "net/quic/core/quic_received_packet_manager.h" 9 #include "net/quic/core/quic_received_packet_manager.h"
10 #include "net/quic/platform/api/quic_flags.h"
11 #include "net/quic/test_tools/quic_framer_peer.h" 11 #include "net/quic/test_tools/quic_framer_peer.h"
12 #include "net/quic/test_tools/quic_packet_generator_peer.h" 12 #include "net/quic/test_tools/quic_packet_generator_peer.h"
13 #include "net/quic/test_tools/quic_sent_packet_manager_peer.h" 13 #include "net/quic/test_tools/quic_sent_packet_manager_peer.h"
14 14
15 namespace net { 15 namespace net {
16 namespace test { 16 namespace test {
17 17
18 // static 18 // static
19 void QuicConnectionPeer::SendAck(QuicConnection* connection) { 19 void QuicConnectionPeer::SendAck(QuicConnection* connection) {
20 connection->SendAck(); 20 connection->SendAck();
(...skipping 232 matching lines...) Expand 10 before | Expand all | Expand 10 after
253 } 253 }
254 254
255 // static 255 // static
256 void QuicConnectionPeer::SetNoStopWaitingFrames(QuicConnection* connection, 256 void QuicConnectionPeer::SetNoStopWaitingFrames(QuicConnection* connection,
257 bool no_stop_waiting_frames) { 257 bool no_stop_waiting_frames) {
258 connection->no_stop_waiting_frames_ = no_stop_waiting_frames; 258 connection->no_stop_waiting_frames_ = no_stop_waiting_frames;
259 } 259 }
260 260
261 } // namespace test 261 } // namespace test
262 } // namespace net 262 } // namespace net
OLDNEW
« no previous file with comments | « net/quic/test_tools/crypto_test_utils.cc ('k') | net/quic/test_tools/quic_session_peer.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698