From a96f4c5795e7cf0d2778a3d77316614de6fcba69 Mon Sep 17 00:00:00 2001 From: "tburkard@chromium.org" Date: Wed, 12 Mar 2014 17:55:16 +0000 Subject: Allow the content browser client to specify a special cookie store to be used for a given render process id. This special cookie store will then be used for renderer messages pertaining to cookies, url fetches in net, and websockets. If the special cookie store is NULL, a default cookie store will be used. R=erikwright@chromium.org, jam@chromium.org, lambroslambrou@chromium.org, mmenke@chromium.org, tyoshino@chromium.org Review URL: https://codereview.chromium.org/188693003 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@256579 0039d316-1c4b-4281-b951-d872f2087c98 --- net/proxy/proxy_script_fetcher_impl.cc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'net/proxy') diff --git a/net/proxy/proxy_script_fetcher_impl.cc b/net/proxy/proxy_script_fetcher_impl.cc index 705bbbf..0887d8c 100644 --- a/net/proxy/proxy_script_fetcher_impl.cc +++ b/net/proxy/proxy_script_fetcher_impl.cc @@ -135,7 +135,7 @@ int ProxyScriptFetcherImpl::Fetch( } cur_request_ = - url_request_context_->CreateRequest(url, DEFAULT_PRIORITY, this); + url_request_context_->CreateRequest(url, DEFAULT_PRIORITY, this, NULL); cur_request_->set_method("GET"); // Make sure that the PAC script is downloaded using a direct connection, -- cgit v1.1