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

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

Issue 1977303002: Revert of QUIC - enable "delay_tcp_race" parameter by default. This feature showed (patchset #3 id:… (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 4 years, 7 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
OLDNEW
1 // Copyright 2015 The Chromium Authors. All rights reserved. 1 // Copyright 2015 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_stream_factory_peer.h" 5 #include "net/quic/test_tools/quic_stream_factory_peer.h"
6 6
7 #include "net/quic/crypto/quic_crypto_client_config.h" 7 #include "net/quic/crypto/quic_crypto_client_config.h"
8 #include "net/quic/quic_chromium_client_session.h" 8 #include "net/quic/quic_chromium_client_session.h"
9 #include "net/quic/quic_clock.h" 9 #include "net/quic/quic_clock.h"
10 #include "net/quic/quic_http_stream.h" 10 #include "net/quic/quic_http_stream.h"
(...skipping 55 matching lines...) Expand 10 before | Expand all | Expand 10 after
66 QuicStreamFactory* factory, 66 QuicStreamFactory* factory,
67 uint16_t port) { 67 uint16_t port) {
68 return factory->number_of_lossy_connections_[port]; 68 return factory->number_of_lossy_connections_[port];
69 } 69 }
70 70
71 bool QuicStreamFactoryPeer::IsQuicDisabled(QuicStreamFactory* factory, 71 bool QuicStreamFactoryPeer::IsQuicDisabled(QuicStreamFactory* factory,
72 uint16_t port) { 72 uint16_t port) {
73 return factory->IsQuicDisabled(port); 73 return factory->IsQuicDisabled(port);
74 } 74 }
75 75
76 bool QuicStreamFactoryPeer::GetDelayTcpRace(QuicStreamFactory* factory) {
77 return factory->delay_tcp_race_;
78 }
79
80 void QuicStreamFactoryPeer::SetDelayTcpRace(QuicStreamFactory* factory,
81 bool delay_tcp_race) {
82 factory->delay_tcp_race_ = delay_tcp_race;
83 }
84
76 void QuicStreamFactoryPeer::SetYieldAfterPackets(QuicStreamFactory* factory, 85 void QuicStreamFactoryPeer::SetYieldAfterPackets(QuicStreamFactory* factory,
77 int yield_after_packets) { 86 int yield_after_packets) {
78 factory->yield_after_packets_ = yield_after_packets; 87 factory->yield_after_packets_ = yield_after_packets;
79 } 88 }
80 89
81 void QuicStreamFactoryPeer::SetYieldAfterDuration( 90 void QuicStreamFactoryPeer::SetYieldAfterDuration(
82 QuicStreamFactory* factory, 91 QuicStreamFactory* factory,
83 QuicTime::Delta yield_after_duration) { 92 QuicTime::Delta yield_after_duration) {
84 factory->yield_after_duration_ = yield_after_duration; 93 factory->yield_after_duration_ = yield_after_duration;
85 } 94 }
(...skipping 71 matching lines...) Expand 10 before | Expand all | Expand 10 after
157 return &factory->push_promise_index_; 166 return &factory->push_promise_index_;
158 } 167 }
159 168
160 int QuicStreamFactoryPeer::GetNumPushStreamsCreated( 169 int QuicStreamFactoryPeer::GetNumPushStreamsCreated(
161 QuicStreamFactory* factory) { 170 QuicStreamFactory* factory) {
162 return factory->num_push_streams_created_; 171 return factory->num_push_streams_created_;
163 } 172 }
164 173
165 } // namespace test 174 } // namespace test
166 } // namespace net 175 } // namespace net
OLDNEW
« no previous file with comments | « net/quic/test_tools/quic_stream_factory_peer.h ('k') | net/url_request/url_request_context_builder.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698