| Index: net/quic/quic_headers_stream.cc
|
| diff --git a/net/quic/quic_headers_stream.cc b/net/quic/quic_headers_stream.cc
|
| index 92f24f45b0145b83fb033a99986db236f5b635a5..a9b04336c41858945d04b311563560153f89f785 100644
|
| --- a/net/quic/quic_headers_stream.cc
|
| +++ b/net/quic/quic_headers_stream.cc
|
| @@ -137,6 +137,11 @@ class QuicHeadersStream::SpdyFramerVisitor
|
| CloseConnection("SPDY CONTINUATION frame received.");
|
| }
|
|
|
| + virtual bool OnUnknownFrame(SpdyStreamId stream_id, int frame_type) OVERRIDE {
|
| + CloseConnection("SPDY unknown frame received.");
|
| + return false;
|
| + }
|
| +
|
| // SpdyFramerDebugVisitorInterface implementation
|
| virtual void OnSendCompressedFrame(SpdyStreamId stream_id,
|
| SpdyFrameType type,
|
|
|