Remove unnecessary QuicStreamPeer methods.
These methods access QuicStream methods that are already public, or
QuicStream members that already have public accessors.
NO_BUG=trivial refactor
gfe-relnote: n/a. No functional change. Test-only change.
PiperOrigin-RevId: 243831754
Change-Id: Id774f61e98b170320279b293a60db63ccf11035a
diff --git a/quic/core/http/quic_spdy_stream_test.cc b/quic/core/http/quic_spdy_stream_test.cc
index 7cff575..1451533 100644
--- a/quic/core/http/quic_spdy_stream_test.cc
+++ b/quic/core/http/quic_spdy_stream_test.cc
@@ -618,8 +618,7 @@
QuicFlowControllerPeer::SendWindowSize(stream_->flow_controller()));
// And we should have queued the overflowed data.
- EXPECT_EQ(kOverflow + kHeaderLength,
- QuicStreamPeer::SizeOfQueuedData(stream_));
+ EXPECT_EQ(kOverflow + kHeaderLength, stream_->BufferedDataBytes());
}
TEST_P(QuicSpdyStreamTest, StreamFlowControlNoWindowUpdateIfNotConsumed) {