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

Unified Diff: net/quic/quic_headers_stream.cc

Issue 141953004: SPDY cleanup: remove credential slot. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Fixups to get flip_in_mem_edsm_server_unittests building & passing. Created 6 years, 11 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 | « no previous file | net/quic/quic_headers_stream_test.cc » ('j') | net/tools/flip_server/spdy_interface.cc » ('J')
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: net/quic/quic_headers_stream.cc
diff --git a/net/quic/quic_headers_stream.cc b/net/quic/quic_headers_stream.cc
index a739d6b1e0aecc83184f696653e1bfc1402fb971..a031e9e6f5927f7b19901537da8c06fb2a59bb1e 100644
--- a/net/quic/quic_headers_stream.cc
+++ b/net/quic/quic_headers_stream.cc
@@ -30,7 +30,6 @@ class QuicHeadersStream::SpdyFramerVisitor
virtual void OnSynStream(SpdyStreamId stream_id,
SpdyStreamId associated_stream_id,
SpdyPriority priority,
- uint8 credential_slot,
bool fin,
bool unidirectional) OVERRIDE {
if (!stream_->IsConnected()) {
@@ -42,11 +41,6 @@ class QuicHeadersStream::SpdyFramerVisitor
return;
}
- if (credential_slot != 0) {
- CloseConnection("credential_slot != 0");
- return;
- }
-
if (unidirectional != 0) {
CloseConnection("unidirectional != 0");
return;
« no previous file with comments | « no previous file | net/quic/quic_headers_stream_test.cc » ('j') | net/tools/flip_server/spdy_interface.cc » ('J')

Powered by Google App Engine
This is Rietveld 408576698