| Index: net/url_request/url_request.cc
 | 
| diff --git a/net/url_request/url_request.cc b/net/url_request/url_request.cc
 | 
| index c8dd8743a5a24da4607326ab672120bd940404a9..c4f20c466cb3af4135b5dd86e6ba5ab4132f60bb 100644
 | 
| --- a/net/url_request/url_request.cc
 | 
| +++ b/net/url_request/url_request.cc
 | 
| @@ -315,8 +315,8 @@ void URLRequest::StartJob(URLRequestJob* job) {
 | 
|  
 | 
|    net_log_.BeginEvent(
 | 
|        net::NetLog::TYPE_URL_REQUEST_START_JOB,
 | 
| -      new URLRequestStartEventParameters(
 | 
| -          url_, method_, load_flags_, priority_));
 | 
| +      make_scoped_refptr(new URLRequestStartEventParameters(
 | 
| +          url_, method_, load_flags_, priority_)));
 | 
|  
 | 
|    job_ = job;
 | 
|    job_->SetExtraRequestHeaders(extra_request_headers_);
 | 
| @@ -493,8 +493,8 @@ int URLRequest::Redirect(const GURL& location, int http_status_code) {
 | 
|    if (net_log_.IsLoggingAllEvents()) {
 | 
|      net_log_.AddEvent(
 | 
|          net::NetLog::TYPE_URL_REQUEST_REDIRECTED,
 | 
| -        new net::NetLogStringParameter(
 | 
| -            "location", location.possibly_invalid_spec()));
 | 
| +        make_scoped_refptr(new net::NetLogStringParameter(
 | 
| +            "location", location.possibly_invalid_spec())));
 | 
|    }
 | 
|    if (redirect_limit_ <= 0) {
 | 
|      DVLOG(1) << "disallowing redirect: exceeds limit";
 | 
| 
 |