Chromium Code Reviews| Index: net/url_request/url_request.cc |
| =================================================================== |
| --- net/url_request/url_request.cc (revision 140753) |
| +++ net/url_request/url_request.cc (working copy) |
| @@ -445,8 +445,8 @@ |
| net_log_.BeginEvent( |
| NetLog::TYPE_URL_REQUEST_START_JOB, |
| - make_scoped_refptr(new URLRequestStartEventParameters( |
| - url(), method_, load_flags_, priority_))); |
| + base::Bind(&NetLogURLRequestStartCallback, |
| + url(), method_, load_flags_, priority_)); |
|
eroman
2012/06/06 21:27:11
perhaps url() and method_ should be passed as poin
mmenke
2012/06/07 19:20:46
Done. Go to all this effort not to have to copy t
|
| job_ = job; |
| job_->SetExtraRequestHeaders(extra_request_headers_); |