| 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;
|
|
|