| Index: net/quic/quic_http_stream.cc
|
| diff --git a/net/quic/quic_http_stream.cc b/net/quic/quic_http_stream.cc
|
| index 87332f9a8f4d1de453fc14aada87482c4ed9a72f..7cfda3a516af87d5104c7e19e4a26b6b3d0495d2 100644
|
| --- a/net/quic/quic_http_stream.cc
|
| +++ b/net/quic/quic_http_stream.cc
|
| @@ -444,12 +444,12 @@ int QuicHttpStream::DoSendHeaders() {
|
| // Log the actual request with the URL Request's net log.
|
| stream_net_log_.AddEvent(
|
| NetLog::TYPE_HTTP_TRANSACTION_QUIC_SEND_REQUEST_HEADERS,
|
| - base::Bind(&QuicRequestNetLogCallback, stream_->id(), &request_headers_,
|
| + base::Bind(QuicRequestNetLogCallback, stream_->id(), &request_headers_,
|
| priority_));
|
| // Also log to the QuicSession's net log.
|
| stream_->net_log().AddEvent(
|
| NetLog::TYPE_QUIC_HTTP_STREAM_SEND_REQUEST_HEADERS,
|
| - base::Bind(&QuicRequestNetLogCallback, stream_->id(), &request_headers_,
|
| + base::Bind(QuicRequestNetLogCallback, stream_->id(), &request_headers_,
|
| priority_));
|
|
|
| bool has_upload_data = request_body_stream_ != nullptr;
|
| @@ -550,7 +550,7 @@ int QuicHttpStream::ParseResponseHeaders() {
|
| // net log.
|
| stream_->net_log().AddEvent(
|
| NetLog::TYPE_QUIC_HTTP_STREAM_READ_RESPONSE_HEADERS,
|
| - base::Bind(&SpdyHeaderBlockNetLogCallback, &headers));
|
| + base::Bind(SpdyHeaderBlockNetLogCallback, &headers));
|
|
|
| if (!SpdyHeadersToHttpResponse(headers, GetSpdyVersion(), response_info_)) {
|
| DLOG(WARNING) << "Invalid headers";
|
|
|