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

Unified Diff: net/quic/quic_protocol.h

Issue 11364068: Add a QuicHttpStream class. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Fix bugs Created 8 years, 1 month 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/quic_protocol.h
diff --git a/net/quic/quic_protocol.h b/net/quic/quic_protocol.h
index 25759aa3050923047c36043955be0abdfa8bb59e..a24e5e9826f59fa648aea3af1dc4d8e08d330da6 100644
--- a/net/quic/quic_protocol.h
+++ b/net/quic/quic_protocol.h
@@ -261,7 +261,7 @@ struct NET_EXPORT_PRIVATE QuicAckFrame {
struct NET_EXPORT_PRIVATE QuicRstStreamFrame {
QuicRstStreamFrame() {}
QuicRstStreamFrame(QuicStreamId stream_id, uint64 offset,
- QuicErrorCode error_code)
+ QuicErrorCode error_code)
: stream_id(stream_id), offset(offset), error_code(error_code) {
DCHECK_LE(error_code, std::numeric_limits<uint8>::max());
}

Powered by Google App Engine
This is Rietveld 408576698