| Index: net/quic/quic_http_stream.cc
|
| diff --git a/net/quic/quic_http_stream.cc b/net/quic/quic_http_stream.cc
|
| index 79ab0016008d845a979ea7226b1a4bc4549ce03c..2daabe6751960959e235f389b8840cd65cad267e 100644
|
| --- a/net/quic/quic_http_stream.cc
|
| +++ b/net/quic/quic_http_stream.cc
|
| @@ -90,7 +90,7 @@ int QuicHttpStream::SendRequest(const HttpRequestHeaders& request_headers,
|
| // Store the serialized request headers.
|
| SpdyHeaderBlock headers;
|
| CreateSpdyHeadersFromHttpRequest(*request_info_, request_headers,
|
| - &headers, 3, /*direct=*/true);
|
| + &headers, SPDY3, /*direct=*/true);
|
| request_ = stream_->compressor()->CompressHeadersWithPriority(priority,
|
| headers);
|
| // Log the actual request with the URL Request's net log.
|
| @@ -504,7 +504,7 @@ int QuicHttpStream::ParseResponseHeaders() {
|
| NetLog::TYPE_QUIC_HTTP_STREAM_READ_RESPONSE_HEADERS,
|
| base::Bind(&SpdyHeaderBlockNetLogCallback, &headers));
|
|
|
| - if (!SpdyHeadersToHttpResponse(headers, 3, response_info_)) {
|
| + if (!SpdyHeadersToHttpResponse(headers, SPDY3, response_info_)) {
|
| DLOG(WARNING) << "Invalid headers";
|
| return ERR_QUIC_PROTOCOL_ERROR;
|
| }
|
|
|