| Index: net/socket_stream/socket_stream.h
 | 
| diff --git a/net/socket_stream/socket_stream.h b/net/socket_stream/socket_stream.h
 | 
| index 7288dec754359dd157ef9d0ef4a26d2df59d66e4..7b7599ee1b4ae86e48a1e619ecffe47f5bc77c33 100644
 | 
| --- a/net/socket_stream/socket_stream.h
 | 
| +++ b/net/socket_stream/socket_stream.h
 | 
| @@ -112,8 +112,8 @@ class SocketStream : public base::RefCountedThreadSafe<SocketStream> {
 | 
|    Delegate* delegate() const { return delegate_; }
 | 
|    int max_pending_send_allowed() const { return max_pending_send_allowed_; }
 | 
|  
 | 
| -  net::URLRequestContext* context() const { return context_.get(); }
 | 
| -  void set_context(net::URLRequestContext* context);
 | 
| +  URLRequestContext* context() const { return context_.get(); }
 | 
| +  void set_context(URLRequestContext* context);
 | 
|  
 | 
|    BoundNetLog* net_log() { return &net_log_; }
 | 
|  
 | 
| @@ -271,7 +271,7 @@ class SocketStream : public base::RefCountedThreadSafe<SocketStream> {
 | 
|  
 | 
|    GURL url_;
 | 
|    int max_pending_send_allowed_;
 | 
| -  scoped_refptr<net::URLRequestContext> context_;
 | 
| +  scoped_refptr<URLRequestContext> context_;
 | 
|  
 | 
|    UserDataMap user_data_;
 | 
|  
 | 
| 
 |