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

Unified Diff: net/quic/quic_session.h

Issue 1470713003: Landing Recent QUIC changes until and including Mon Nov 16 14:15:48 2015 (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Review feedback fixes in quic_connection.cc, quic_connection_test.cc and quic_server_bin.cc. Created 5 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_session.h
diff --git a/net/quic/quic_session.h b/net/quic/quic_session.h
index cbdfb05c9535a80d0e9d09398673391f0803be07..8b6d1e00b3e924545f40cb8771c0ef97f6723841 100644
--- a/net/quic/quic_session.h
+++ b/net/quic/quic_session.h
@@ -168,7 +168,8 @@ class NET_EXPORT_PRIVATE QuicSession : public QuicConnectionVisitorInterface {
// connection-level flow control but not by its own stream-level flow control.
// The stream will be given a chance to write when a connection-level
// WINDOW_UPDATE arrives.
- void MarkConnectionLevelWriteBlocked(QuicStreamId id, QuicPriority priority);
+ void MarkConnectionLevelWriteBlocked(QuicStreamId id,
+ SpdyPriority priority);
// Returns true if the session has data to be sent, either queued in the
// connection, or in a write-blocked stream.
@@ -335,9 +336,6 @@ class NET_EXPORT_PRIVATE QuicSession : public QuicConnectionVisitorInterface {
// Used for connection-level flow control.
QuicFlowController flow_controller_;
- // Indicate if there is pending data for the crypto stream.
- bool has_pending_handshake_;
-
DISALLOW_COPY_AND_ASSIGN(QuicSession);
};

Powered by Google App Engine
This is Rietveld 408576698