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

Unified Diff: net/quic/reliable_quic_stream_test.cc

Issue 346303006: Removing deprecated flag FLAGS_enable_quic_stream_flow_control_2 (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Deleted quic_flags.h include Created 6 years, 6 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 | « net/quic/quic_session_test.cc ('k') | net/tools/quic/end_to_end_test.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: net/quic/reliable_quic_stream_test.cc
diff --git a/net/quic/reliable_quic_stream_test.cc b/net/quic/reliable_quic_stream_test.cc
index b673a4eef5d415a6ad7d31538a3cd51c7cc472f4..ea81d6e34024fb27645ab5329536fce210afa565 100644
--- a/net/quic/reliable_quic_stream_test.cc
+++ b/net/quic/reliable_quic_stream_test.cc
@@ -395,7 +395,6 @@ TEST_F(ReliableQuicStreamTest, OnlySendOneRst) {
}
TEST_F(ReliableQuicStreamTest, StreamFlowControlMultipleWindowUpdates) {
- ValueRestore<bool> old_flag(&FLAGS_enable_quic_stream_flow_control_2, true);
set_initial_flow_control_window_bytes(1000);
Initialize(kShouldProcessData);
@@ -431,7 +430,6 @@ TEST_F(ReliableQuicStreamTest, StreamFlowControlMultipleWindowUpdates) {
TEST_F(ReliableQuicStreamTest, StreamFlowControlShouldNotBlockInLessThanQ017) {
// TODO(rjshade): Remove this test when we no longer have any versions <
// QUIC_VERSION_17.
- ValueRestore<bool> old_flag(&FLAGS_enable_quic_stream_flow_control_2, true);
// Make sure we are using a version which does not support flow control.
QuicVersion kTestQuicVersions[] = {QUIC_VERSION_16};
@@ -636,8 +634,6 @@ TEST_F(ReliableQuicStreamTest, WriteAndBufferDataWithAckNotiferOnlyFinRemains) {
// as we check for violation and close the connection early.
TEST_F(ReliableQuicStreamTest,
StreamSequencerNeverSeesPacketsViolatingFlowControl) {
- ValueRestore<bool> old_stream_flag(
- &FLAGS_enable_quic_stream_flow_control_2, true);
ValueRestore<bool> old_connection_flag(
&FLAGS_enable_quic_connection_flow_control_2, true);
« no previous file with comments | « net/quic/quic_session_test.cc ('k') | net/tools/quic/end_to_end_test.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698