| Index: net/url_request/url_request_context.cc
|
| diff --git a/net/url_request/url_request_context.cc b/net/url_request/url_request_context.cc
|
| index 45ac83f3752964120fa47e3a53a218707553f209..b5c531342ea37684c4610c15451508bc8f22dd45 100644
|
| --- a/net/url_request/url_request_context.cc
|
| +++ b/net/url_request/url_request_context.cc
|
| @@ -68,9 +68,11 @@ const HttpNetworkSession::Params* URLRequestContext::GetNetworkSessionParams(
|
| return &network_session->params();
|
| }
|
|
|
| -URLRequest* URLRequestContext::CreateRequest(
|
| - const GURL& url, URLRequest::Delegate* delegate) const {
|
| - return new URLRequest(url, delegate, this, network_delegate_);
|
| +scoped_ptr<URLRequest> URLRequestContext::CreateRequest(
|
| + const GURL& url,
|
| + RequestPriority priority,
|
| + URLRequest::Delegate* delegate) const {
|
| + return scoped_ptr<URLRequest>(new URLRequest(url, priority, delegate, this));
|
| }
|
|
|
| void URLRequestContext::set_cookie_store(CookieStore* cookie_store) {
|
|
|