| Index: net/socket_stream/socket_stream.cc
|
| diff --git a/net/socket_stream/socket_stream.cc b/net/socket_stream/socket_stream.cc
|
| index 51e9290743131494ae1b37fe9e9c04d0bfb6eced..5ef9547232d09461a4427f0538fa049cb6209434 100644
|
| --- a/net/socket_stream/socket_stream.cc
|
| +++ b/net/socket_stream/socket_stream.cc
|
| @@ -101,8 +101,8 @@ bool SocketStream::is_secure() const {
|
| return url_.SchemeIs("wss");
|
| }
|
|
|
| -void SocketStream::set_context(URLRequestContext* context) {
|
| - scoped_refptr<URLRequestContext> prev_context = context_;
|
| +void SocketStream::set_context(const URLRequestContext* context) {
|
| + const URLRequestContext* prev_context = context_;
|
|
|
| context_ = context;
|
|
|
|
|