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

Unified Diff: net/tools/quic/end_to_end_test.cc

Issue 495233002: QUIC minor clean up to keep in sync with internal sources. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@Move_least_packet_awaited_by_peer_73630593
Patch Set: Created 6 years, 4 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_sustained_bandwidth_recorder_test.cc ('k') | net/tools/quic/quic_dispatcher.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: net/tools/quic/end_to_end_test.cc
diff --git a/net/tools/quic/end_to_end_test.cc b/net/tools/quic/end_to_end_test.cc
index 24ad390539bef699900cc0f62fa0d309e13590ec..13c514ac40d258d35068caf2a1b5daab6f0a4585 100644
--- a/net/tools/quic/end_to_end_test.cc
+++ b/net/tools/quic/end_to_end_test.cc
@@ -248,15 +248,14 @@ class EndToEndTest : public ::testing::TestWithParam<TestParams> {
void set_client_initial_stream_flow_control_receive_window(uint32 window) {
CHECK(client_.get() == NULL);
- DLOG(INFO) << "Setting client initial stream flow control window: "
- << window;
+ DVLOG(1) << "Setting client initial stream flow control window: " << window;
client_config_.SetInitialStreamFlowControlWindowToSend(window);
}
void set_client_initial_session_flow_control_receive_window(uint32 window) {
CHECK(client_.get() == NULL);
- DLOG(INFO) << "Setting client initial session flow control window: "
- << window;
+ DVLOG(1) << "Setting client initial session flow control window: "
+ << window;
client_config_.SetInitialSessionFlowControlWindowToSend(window);
}
@@ -268,15 +267,15 @@ class EndToEndTest : public ::testing::TestWithParam<TestParams> {
void set_server_initial_stream_flow_control_receive_window(uint32 window) {
CHECK(server_thread_.get() == NULL);
- DLOG(INFO) << "Setting server initial stream flow control window: "
- << window;
+ DVLOG(1) << "Setting server initial stream flow control window: "
+ << window;
server_config_.SetInitialStreamFlowControlWindowToSend(window);
}
void set_server_initial_session_flow_control_receive_window(uint32 window) {
CHECK(server_thread_.get() == NULL);
- DLOG(INFO) << "Setting server initial session flow control window: "
- << window;
+ DVLOG(1) << "Setting server initial session flow control window: "
+ << window;
server_config_.SetInitialSessionFlowControlWindowToSend(window);
}
« no previous file with comments | « net/quic/quic_sustained_bandwidth_recorder_test.cc ('k') | net/tools/quic/quic_dispatcher.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698