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

Unified Diff: net/quic/reliable_quic_stream_test.cc

Issue 324283004: Rename FLAGS_enable_quic_connection_flow_control to FLAGS_enable_quic_connection_flow_control_2, an… (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: 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
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 df8e6301a73945c99e0ed9614f4b322e0afba7a9..7efdebfebad94d897f458977f53bf60ea9c90bae 100644
--- a/net/quic/reliable_quic_stream_test.cc
+++ b/net/quic/reliable_quic_stream_test.cc
@@ -399,7 +399,7 @@ TEST_F(ReliableQuicStreamTest, WriteOrBufferDataWithQuicAckNotifier) {
// Set a large flow control send window so this doesn't interfere with test.
stream_->flow_controller()->UpdateSendWindowOffset(kDataSize + 1);
- if (FLAGS_enable_quic_connection_flow_control) {
+ if (FLAGS_enable_quic_connection_flow_control_2) {
session_->flow_controller()->UpdateSendWindowOffset(kDataSize + 1);
}
@@ -454,7 +454,7 @@ TEST_F(ReliableQuicStreamTest, WriteOrBufferDataAckNotificationBeforeFlush) {
// Set a large flow control send window so this doesn't interfere with test.
stream_->flow_controller()->UpdateSendWindowOffset(kDataSize + 1);
- if (FLAGS_enable_quic_connection_flow_control) {
+ if (FLAGS_enable_quic_connection_flow_control_2) {
session_->flow_controller()->UpdateSendWindowOffset(kDataSize + 1);
}
@@ -565,7 +565,7 @@ TEST_F(ReliableQuicStreamTest,
ValueRestore<bool> old_stream_flag(
&FLAGS_enable_quic_stream_flow_control_2, true);
ValueRestore<bool> old_connection_flag(
- &FLAGS_enable_quic_connection_flow_control, true);
+ &FLAGS_enable_quic_connection_flow_control_2, true);
Initialize(kShouldProcessData);

Powered by Google App Engine
This is Rietveld 408576698