| 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 40dad2b8f103327c2d44397f2422e5fe005f8c37..e0df04ef3874aff54e7514d7d76f40482dbe1b34 100644
|
| --- a/net/url_request/url_request_context.cc
|
| +++ b/net/url_request/url_request_context.cc
|
| @@ -63,6 +63,11 @@ void URLRequestContext::CopyFrom(const URLRequestContext* other) {
|
| set_throttler_manager(other->throttler_manager_);
|
| }
|
|
|
| +URLRequest* URLRequestContext::CreateRequest(
|
| + const GURL& url, URLRequest::Delegate* delegate) const {
|
| + return new URLRequest(url, delegate, this, network_delegate_);
|
| +}
|
| +
|
| void URLRequestContext::set_cookie_store(CookieStore* cookie_store) {
|
| cookie_store_ = cookie_store;
|
| }
|
|
|