Chromium Code Reviews

Unified Diff: net/quic/reliable_quic_stream.h

Issue 420313005: Land Recent QUIC Changes. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@Final_0723
Patch Set: change QUIC packet size to 1350 Created 6 years, 5 months ago
Use n/p to move between diff chunks; N/P to move between comments.
Jump to:
View side-by-side diff with in-line comments
Index: net/quic/reliable_quic_stream.h
diff --git a/net/quic/reliable_quic_stream.h b/net/quic/reliable_quic_stream.h
index 84eedec18a87b487d424c54cffab08e457fe9cdd..b9aa8ee732c9dc955210ed1fb9936c5ea24dc81c 100644
--- a/net/quic/reliable_quic_stream.h
+++ b/net/quic/reliable_quic_stream.h
@@ -38,9 +38,8 @@ class NET_EXPORT_PRIVATE ReliableQuicStream {
virtual ~ReliableQuicStream();
// Called when a (potentially duplicate) stream frame has been received
- // for this stream. Returns false if this frame can not be accepted
- // because there is too much data already buffered.
- virtual bool OnStreamFrame(const QuicStreamFrame& frame);
+ // for this stream.
+ virtual void OnStreamFrame(const QuicStreamFrame& frame);
// Called when the connection becomes writeable to allow the stream
// to write any pending data.

Powered by Google App Engine