| Index: net/spdy/spdy_proxy_client_socket.cc
|
| diff --git a/net/spdy/spdy_proxy_client_socket.cc b/net/spdy/spdy_proxy_client_socket.cc
|
| index 69e93a6aa068436dd2abb0ea56ffd04478932864..80660070e334ddd23bda18d0d27f3857f5be1efb 100644
|
| --- a/net/spdy/spdy_proxy_client_socket.cc
|
| +++ b/net/spdy/spdy_proxy_client_socket.cc
|
| @@ -310,8 +310,8 @@ int SpdyProxyClientSocket::DoSendRequest() {
|
| if (net_log_.IsLoggingAllEvents()) {
|
| net_log_.AddEvent(
|
| NetLog::TYPE_HTTP_TRANSACTION_SEND_TUNNEL_HEADERS,
|
| - new NetLogHttpRequestParameter(
|
| - request_line, request_headers));
|
| + make_scoped_refptr(new NetLogHttpRequestParameter(
|
| + request_line, request_headers)));
|
| }
|
|
|
| request_.extra_headers.MergeFrom(request_headers);
|
| @@ -350,7 +350,7 @@ int SpdyProxyClientSocket::DoReadReplyComplete(int result) {
|
| if (net_log_.IsLoggingAllEvents()) {
|
| net_log_.AddEvent(
|
| NetLog::TYPE_HTTP_TRANSACTION_READ_TUNNEL_RESPONSE_HEADERS,
|
| - new NetLogHttpResponseParameter(response_.headers));
|
| + make_scoped_refptr(new NetLogHttpResponseParameter(response_.headers)));
|
| }
|
|
|
| if (response_.headers->response_code() == 200)
|
| @@ -406,7 +406,8 @@ void SpdyProxyClientSocket::OnDataReceived(const char* data, int length) {
|
| // Save the received data.
|
| scoped_refptr<IOBuffer> io_buffer(new IOBuffer(length));
|
| memcpy(io_buffer->data(), data, length);
|
| - read_buffer_.push_back(new DrainableIOBuffer(io_buffer, length));
|
| + read_buffer_.push_back(
|
| + make_scoped_refptr(new DrainableIOBuffer(io_buffer, length)));
|
| }
|
|
|
| if (read_callback_) {
|
|
|